Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [T6][ZM] High Round Money Script

[T6][ZM] High Round Money Script

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
2 Posts 2 Posters 842 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • THEMOONMANundefined Offline
    THEMOONMANundefined Offline
    THEMOONMAN
    wrote on last edited by THEMOONMAN
    #1

    I noticed the lack of a script in the forum where a new player connection is awarded a certain amount of money if they joined in what is considered a high round this is useful to provide a fair ground for new connections into a server in high rounds without the need for a bank this provides a more vanilla and friendly playstyle.

    Installation :

    • Copy and paste the script into notepad or notepad ++
    • Save the file as moneyscript.gsc
      -Use the GSC compiler and compile the file
      -Enjoy
      File directory : storage/t6/scripts/zm
      YOU CAN EDIT THIS SCRIPT TO AWARD THE MONEY ON A DIFFERENT ROUND DEFAULT IS 16 AND BEYOND OR CHANGE THE MONEY VALUES IN MY OPINION THE DEFAULT CONFIG IS MORE THAN PERFEECT.
    // MADE BY THEMOONMAN FOR PLUTONIUMFORUMS T6 ZM SCRIPT 
    // HIGH ROUND MONEY SCRIPT
    init()
    {
        
        level thread onplayerconnect();
    }
    
    onplayerconnect()
    {
        
        for (;;)
        {
            level waittill("connecting", player);
            player.clientid = level.clientid;
            level.clientid++;
            player thread onplayerspawned();  // Start tracking the player's actions after they spawn
        }
    }
    
    onplayerspawned()
    {
        
        self waittill("spawned_player");
    
        // Change the 25000 value for editing the awarded points. Change the value 16 if you want to change the round for the money award.
        if (level.round_number >= 16 && self.score < 25000)
        {
            self.score = 25000;  // Give the player 25000 points if round number is 16 or greater also needs change if you want to edit money value.
        }
    }
    
    1 Reply Last reply
    1
    • Malongdongundefined Offline
      Malongdongundefined Offline
      Malongdong
      wrote on last edited by
      #2

      noice

      1 Reply Last reply
      0

      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Donate