C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : error 037: invalid string (possibly non-terminated string) C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : warning 217: loose indentation C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : warning 215: expression has no effect C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : error 001: expected token: ";", but found ")" C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : error 029: invalid expression, assumed zero C:\Users\Owner\Desktop\Raven's Roleplay 0.3d R2 V4.2\gamemodes\larp.pwn(4979) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
dcmd_acheckcode(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] < 5) return SendClientMessage(playerid, COLOR_GREY, "* You are not authorized to use this!!"); new carid; new comment[64]; if(sscanf(params, "i", carid)) return SendClientMessage(playerid,"Usage: \"/acheckcode <carid>\"); if(IsAnOwnableCar(carid)) { format(comment, sizeof(comment),"* Car id %d code is %d",carid, CarInfo[carid][cCode]); } else { format(comment, sizeof(comment),"* Car id %d code is %d",carid, VehiclePass[carid]); } SendClientMessage(playerid, COLOR_GREY,comment); return 1; }
return SendClientMessage(playerid,"Usage: \"/acheckcode <carid>\")";
dcmd_acheckcode(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] >= 5) return SendClientMessage(playerid, COLOR_GREY, "* You are not authorized to use this!!"); new carid; new comment[64]; if(sscanf(params, "i", carid)) return SendClientMessage(playerid,"Usage: \"/acheckcode <carid>\"); if(IsAnOwnableCar(carid)) { format(comment, sizeof(comment),"* Car id %d code is %d",carid, CarInfo[carid][cCode]); } else { format(comment, sizeof(comment),"* Car id %d code is %d",carid, VehiclePass[carid]); } SendClientMessage(playerid, COLOR_GREY,comment); return 1; }
pawn Код:
|
return SendClientMessage(playerid,"Usage: \"/acheckcode <carid>\"");