16.02.2014, 19:46
Ola Boa Tarde !
Eu Gostaria De Um Cmd Para Ir Em Uma Cord xyz ? Podem Me Ajudar ?
Eu Gostaria De Um Cmd Para Ir Em Uma Cord xyz ? Podem Me Ajudar ?
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;
}
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;
}
acho que quiseste dizer strcmp
@ topico quanto a escolha leia isto: https://sampforum.blast.hk/showthread.php?tid=493276 |