25.08.2012, 20:50
їPor quй al usar el comando /tpc me aparece "Introduciste un comando inexistente, escribe /ayuda"?
pawn Код:
if (strcmp(cmdtext, "/tpc", true)==0)
{
new Float:x, Float:y, Float:z;
new tmp[128];
tmp = strtok(cmdtext, idx);
if (!strlen(tmp) || !strlen(tmp)) return SendClientMessage(playerid, 0xFF0000AA, "Usa: /tpc <X> <Y> <Z>");
else
{
SetPlayerPos(playerid, x, y, z);
SendClientMessage(playerid, 0xFF0000AA, "Teletransportado.");
}
return 1;
}