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.
}
}