[Ajuda] Ajuda Comando
#1

Boa tarde quero saber como faz pra que o jogador so possa usar esse comando em um check


Код:
CMD:bancoLS(playerid)
{
    Msg(playerid, -1, "Banco San Andreas.");
    SelectTextDraw(playerid, 0xFF0000FF);
    for(new i = 0; i < sizeof(Banco); i++) TextDrawShowForPlayer(playerid, Banco[i]);
	return 1;
}
Reply
#2

IsPlayerToPoint.
Reply
#3

Quote:
Originally Posted by ipsLuan
Посмотреть сообщение
IsPlayerToPoint.
Ok fiz isso

Код:
    CMD:banco(playerid)
    {
    if(IsPlayerToPoint( 1.1, playerid, 1682.7258,-2311.7554,13.5469 ))
    {
    SendClientMessage( playerid,-1, "[ ERRO ] Você não está em um Banco." );
    return 1;
    }
    Msg(playerid, -1, "Banco San Andreas.");
    SelectTextDraw(playerid, 0xFF0000FF);
    for(new i = 0; i < sizeof(Banco); i++) TextDrawShowForPlayer(playerid, Banco[i]);
	return 1;
}
Agora ta dando esse erro como que defino isso?
Код:
error 017: undefined symbol "IsPlayerToPoint"
Reply
#4

IsPlayerInRangeOfPoint
https://sampwiki.blast.hk/wiki/PlayerToPoint
Reply
#5

Quote:
Originally Posted by yurin
Посмотреть сообщение
Qual include tenho que usar pra pega esses codigos pq ta dando erro dizendo que tem que definir '-'
Reply
#6

PHP код:

stock PlayerToPoint
(Float:radiplayeridFloat:xFloat:yFloat:z)
{
new 
Float:oldposxFloat:oldposyFloat:oldposz;
new 
Float:tempposxFloat:tempposyFloat:tempposz;
GetPlayerPos(playeridoldposxoldposyoldposz);
tempposx = (oldposx -x);
tempposy = (oldposy -y);
tempposz = (oldposz -z);
if (((
tempposx radi) && (tempposx > -radi)) && ((tempposy radi) && (tempposy > -radi)) && ((tempposz radi) && (tempposz > -radi)))
{
return 
1;
}
return 
0;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)