SlothWiiPlaza
Veteran
- Messages
- 34
- Reaction score
- 28
- Points
- 793
Hello, i'm having a bit of problems with my Sky Text.
I want it so you can only toggle it once, this is causing problems in my lobbies when i spawn Sky Text and some n00b also toggles it, which causes lag.
Here's the toggle:
I want it so you can only toggle it once, this is causing problems in my lobbies when i spawn Sky Text and some n00b also toggles it, which causes lag.
Here's the toggle:
PHP:
swpSkyText()
{
if( self.skytext == 0 )
{
self iprintlnbold(self.name + ": Skytext ^2Spawned");
WP("skytextcodehere");
self.skytext = 1;
}
else
{
self iprintlnbold("^1Skytext already spawned!");
}
}