SA-MP Forums Archive
/recon - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: /recon (/showthread.php?tid=344410)



/recon - System12 - 20.05.2012

I need this plz
When admins typing / recon that are not seen and that can walk and when typing / offrecon to see and walk normally


Re: /recon - Kudoz - 20.05.2012

What the f*** are you talking about? explain more please.


Re: /recon - Xaviour212 - 21.05.2012

Like this?? :

pawn Код:
CMD:recon(playerid, params[])
{
     if(!IsPlayerAdmin(playerid)) return 0;
     TogglePlayerControllable(playerid, false);
     SetPlayerVirtualWorld(playerid, 50+playerid);
     return 1;
}

CMD:offrecon(playerid, params[])
{
     if(!IsPlayerAdmin(playerid)) return 0;
     TogglePlayerControllable(playerid, true);
     SetPlayerVirtualWorld(playerid, 0);
     return 1;
}



Re: /recon - System12 - 21.05.2012

Yes, tnx