[Ajuda] Comando Ir Cord [x y z]
#1

Ola Boa Tarde !



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

se fala pra ir ate um jogador ou uma coordenada ?
Reply
#3

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;
}
Reply
#4

[Coordenada]


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

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

mais como fica em strcmp ?
Reply
#7

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;
}
Reply
#8

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
Reply
#9

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!
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)