Advertisement
Fastmapler

Untitled

Jul 31st, 2021
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package ArmorOnSpawn
  2. {
  3. function GameConnection::createPlayer (%client, %spawnPoint)
  4. {
  5. %ret = parent::createPlayer(%client, %spawnPoint);
  6.  
  7. if (isObject(%player = %client.player))
  8. {
  9. %player.mountArmorSet(2);
  10. }
  11.  
  12. return %ret;
  13. }
  14. };
  15. activatePackage("ArmorOnSpawn");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement