Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
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 1.4k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
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

      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

      With your input, this post could be even better 💗

      Register Login
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

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