Guest User

Completely hide names

a guest
Feb 14th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package completelyhidenames
  2. {
  3. function gameconnection::spawnplayer(%this)
  4. {
  5. Parent::spawnPlayer(%this);
  6. %this.player.setName("TEMPPLAYER");
  7. %this.player = new Player(newplayer : TEMPPLAYER)
  8. {
  9. client = %this;
  10. };
  11. %this.applyBodyParts();
  12. %this.applyBodyColors();
  13. TEMPPLAYER.delete();
  14. newplayer.setName("");
  15. %this.setControlObject(%this.player);
  16. }
  17. function serverCmdLight(%client)
  18. {
  19. return;
  20. }
  21. };
  22. activatepackage(completelyhidenames);
Advertisement
Add Comment
Please, Sign In to add comment