CMD:portloc(playerid, params[]){ new Float:x, Float:y, Float:z, PortMsg[128]; if (sscanf(params, \"fff\", x, y, z)) SendClientMessage(playerid, 0xFF0000AA, \"Használat: \\\"/portloc <x> <y> <z>\\\"\"); { SetPlayerPos(playerid, x, y, z); format(PortMsg, 128, \"Ellteleportáltál erre a hellyre: %4.2f, %4.2f, %4.2f\", x, y, z); return 1; } return 1;}
return 1;}
én tennék inkább zárást vagyis: return 1;} De szép kis kód kössz a publikálást ! +1
if (sscanf(params, \"fff\", x, y, z)) SendClientMessage(playerid, 0xFF0000AA, \"Használat: \\\"/portloc <x> <y> <z>\\\"\"); {
if (sscanf(params, \"fff\", x, y, z)) return SendClientMessage(playerid, 0xFF0000AA, \"Használat: /portloc <x> <y> <z>\");
format(PortMsg, 128, \"Ellteleportáltál erre a hellyre: %4.2f, %4.2f, %4.2f\", x, y, z);
format(PortMsg, 128, \"Ellteleportáltál erre a hellyre: %f, %f, %f\", x, y, z);SendClientMessage(playerid, -1, PortMsg);