05.03.2012, 18:45
i want player type /join command all tp to me like i make hide n seek event and i said anyone want join event type /join or /yes
help me
help me
i want player type /join command all tp to me like i make hide n seek event [..]
|
CMD:join( playerid, params[ ] )
{
if( !IsPlayerAdmin( playerid ) ) return SendClientMessage( playerid, -1, "You aren't Rcon Admin!" );
new Float:XPos, Float:YPos, Float:ZPos;
GetPlayerPos( playerid, XPos, YPos, ZPos );
for( new i = 0; i < MAX_PLAYERS; i ++ )
{
SetPlayerPos( i, XPos, YPos, ZPos );
SendClientMessage( i, -1, "The {FF0000}Hide n' Seek {FFFFFF}Event has started!" );
}
return 1;
}