23.06.2011, 15:20
Hey,
The Spectate command working with the function "PlayerSpectatePlayer" or "PlayerSpectateVehicle".
There is a basic Spectate command:
Enjoy.
The Spectate command working with the function "PlayerSpectatePlayer" or "PlayerSpectateVehicle".
There is a basic Spectate command:
PHP код:
if(strcmp(cmd,"/Spectate", true) ==0)
{
new id[256];
id = strtok(cmdtext, idx);
if(!strlen(id)) return SendClientMessage(playerid, YELLOW,"USAGE: /Spectate [ID]");
if(!IsPlayerConnected(strval(id))) return SendClientMessage(playerid, YELLOW,"Error: Invalid ID");
TogglePlayerSpectating(playerid, 1);
PlayerSpectatePlayer(playerid, strval(id));
return 1;
}