[Ajuda] Sistema de Teleport x + y - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Sistema de Teleport x + y (
/showthread.php?tid=626895)
Sistema de Teleport x + y -
DarkZin - 21.01.2017
Olб, ja fui adm em um servidor que o teleporte funcionava como o mod cleo "Teleport to maker" que vocк marca no mapa e depois da x+y. Como fazer isso na GM? qual funзгo estudar? Obrigado,
Re: Sistema de Teleport x + y -
didimk157 - 21.01.2017
Bom mn n sei muito nao mais do x + y deve ser isso
https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange
Re: Sistema de Teleport x + y -
vinilol321 - 21.01.2017
https://sampwiki.blast.hk/wiki/OnPlayerClickMap isso ?
Re: Sistema de Teleport x + y -
IlanZ - 21.01.2017
Toma uma base ai
PHP код:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
if(pAdmin[playerid][Level] >= 1)
{
if(IsPlayerInAnyVehicle(playerid))
{
SetVehiclePos(GetPlayerVehicleID(playerid), fX, fY, fZ+6);
}
else
{
SetPlayerPos(playerid, fX, fY, fZ+6);
}
}
return 1;
}
Re: Sistema de Teleport x + y -
DarkZin - 21.01.2017
Quote:
Originally Posted by IlanZ
Toma uma base ai
PHP код:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
if(pAdmin[playerid][Level] >= 1)
{
if(IsPlayerInAnyVehicle(playerid))
{
SetVehiclePos(GetPlayerVehicleID(playerid), fX, fY, fZ+6);
}
else
{
SetPlayerPos(playerid, fX, fY, fZ+6);
}
}
return 1;
}
|
Acho que й isso, valeu ai, vou ver!