[Pawn] Help me - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] Help me (/showthread.php?tid=2869) |
Help me - tuankhanqsamp - 2024-08-21 [113064] Warning 209 : 209: function should return a valu //safezone forward LoadPlayer(); public LoadPlayer() { for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { if(Loaded[i] == 1) { TogglePlayerControllable(i,true); Loaded[i] = 0; return 1; } } } } [116252] Warning 202: number of arguments does not match definition CMD:laytoado(playerid, params[]) { new string[128]; new tstring[50]; new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); format(string, sizeof(string), "%0.2f, %0.2f, %0.2f", x, y, z); format(tstring, sizeof(tstring), "-------------------------"); Log("logs/toado.log", string, tstring); SendClientMessage(playerid, COLOR_WHITE, "Ban Da Lay Toa Do Vao (( Sciptfile>logs>an vao file toado.log de lay toa do nhe ))."); return 1; } RE: Help me - contatofelipeojustin - 2024-08-25 Sou novo no Open.MP e no Qawno, estou querendo fazer um servidor de fugas e pvp. Testei um sistema de criar motos bem básico, mas não estou tendo resultado na criação da moto, o sistema funciona com base no comando: /moto (utilizei a include do zcmd), esse comando abre uma dialog que é possivel escolher uma moto, mas não cria a moto. Alguem pode me ajuda? Meu Código(coloqueias partes principais): Code: #include <open.mp> |