AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() - 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: AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() (
/showthread.php?tid=517698)
AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() -
cleanboy - 06.06.2014
what is that thing? it says allow rcon admins to waypoint teleport? is that new to 0.3z? and how can i use it?
Re: AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() -
RajatPawar - 06.06.2014
https://sampwiki.blast.hk/wiki/OnPlayerClickMap
https://sampwiki.blast.hk/wiki/AllowAdminTeleport
Says everything that needs to be said.
Re: AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() -
Dignity - 06.06.2014
pawn Код:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
if(IsPlayerAdmin(playerid))
{
SetPlayerPosFindZ(playerid, fX, fY, fZ);
}
return 1;
}
Re: AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap() -
cleanboy - 07.06.2014
thanks guys