04.07.2018, 14:29
(
Последний раз редактировалось linhpro200294; 04.07.2018 в 15:22.
)
I have done it like this you guys have to see if I have any wrong place, if there is any error then you show me how to fix it, thank you.
This is a bug in the server log, please fix it for me, please
Quote:
CMD:dvcreate(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] >= 133 { new vehicleid iVehicle, iColors[2], iaddsiren, string[128]; if(sscanf(params, "iiiI", iVehicle, iColors[0], iColors[1], iaddsiren)) { return SendClientMessageEx(playerid, COLOR_GREY, "SU DUNG: /dvcreate [model ID] [color 1] [color 2] [Siren type]"); } if(!(400 < iVehicle < 612)) return SendClientMessage(playerid, COLOR_GRAD2, "Invalid Model ID"); else if(IsATrain(iVehicle)) { SendClientMessageEx(playerid, COLOR_GREY, "Trains cannot be spawned during runtime."); } else if(!(0 <= iColors[0] <= 255 && 0 <= iColors[1] <= 255)) { SendClientMessageEx(playerid, COLOR_GRAD2, "Invalid color specified (IDs start at 0, and end at 255)."); } mysql_function_query(MainPipeline, "SELECT id from `groupvehs` WHERE vModel = 0 LIMIT 1;", true, "DynVeh_CreateDVQuery", "iiiI", playerid, iVehicle, iColors[0], iColors[1], iaddsiren); format(string, sizeof(string), "%s has created a dynamic vehicle.", GetPlayerNameEx(playerid)); Log("logs/dv.log", string); } else return SendClientMessage(playerid, COLOR_GRAD2, "Ban khong the su dung lenh nay."); return 1; } |
Quote:
/dvcreate 415 1 1 1 [10:52:11] sscanf warning: Format specifier does not match parameter count. |