SA-MP Forums Archive
[Ajuda] Comando Ir Cord [x y z] - 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] Comando Ir Cord [x y z] (/showthread.php?tid=495329)



Comando Ir Cord [x y z] - Alisson Silva Alves - 16.02.2014

Ola Boa Tarde !



Eu Gostaria De Um Cmd Para Ir Em Uma Cord xyz ? Podem Me Ajudar ?



Re: Comando Ir Cord [x y z] - Dieguinho - 16.02.2014

se fala pra ir ate um jogador ou uma coordenada ?


Re: Comando Ir Cord [x y z] - Gii - 16.02.2014

pawn Код:
CMD:ircord(playerid, params[]) {

    static
        Float:x,
        Float:y,
        Float:z
    ;

    if (sscanf(params, "fff", x, y, z))
        return SendClientMessage(playerid, -1, "Use /ircord [x] [y] [z]");
       
    SetPlayerPos(playerid, x, y, z);
    SendClientMessage(playerid, -1, "Teleportado com sucesso!");
    return 1;
}



Re: Comando Ir Cord [x y z] - Alisson Silva Alves - 16.02.2014

[Coordenada]


Como Ficaria Assim ? if (strcmp(cmd, "/ircord", true) == 0)



Re: Comando Ir Cord [x y z] - brunox - 16.02.2014

use zcmd e sscanf, strtok nгo foi feito para comandos!


Re: Comando Ir Cord [x y z] - Alisson Silva Alves - 16.02.2014

mais como fica em strcmp ?


Re: Comando Ir Cord [x y z] - Gii - 16.02.2014

pawn Код:
if (!strcmp(cmd, "/ircord")) {

    static
        x_[24],
        y_[24],
        z_[24]
    ;
   
    x_ = strtok(cmdtext, idx), y_ = strtok(cmdtext, idx), z_ = strtok(cmdtext, idx);
   
    if (!strlen(x_) || !strlen(y_) || !strlen(z_))
        return SendClientMessage(playerid, -1, "Use /ircord [x] [y] [z]");
   
    SetPlayerPos(playerid, floatstr(x_), floatstr(y_), floatstr(z_));
    SendClientMessage(playerid, -1, "Teleportado com sucesso!");
    return 1;
}



Re: Comando Ir Cord [x y z] - PT - 16.02.2014

Quote:
Originally Posted by brunox
Посмотреть сообщение
use zcmd e sscanf, strtok nгo foi feito para comandos!
acho que quiseste dizer strcmp

@ topico quanto a escolha

leia isto: https://sampforum.blast.hk/showthread.php?tid=493276


Re: Comando Ir Cord [x y z] - brunox - 16.02.2014

Quote:
Originally Posted by PT
Посмотреть сообщение
acho que quiseste dizer strcmp

@ topico quanto a escolha

leia isto: https://sampforum.blast.hk/showthread.php?tid=493276
Sim obrigado pela correзгo!