18.05.2020, 07:53
Quote:
What is it with all the people requesting command like it's a script request forum...
You didn't even give a proper explanation of what your command is supposed to do. Post whatever code snippet you already have. If you're looking for a person to do it for you, this is the wrong place, look at here instead: Looking for scripters/helpers? Post here! |
Code:
CMD:cw(playerid, params[]) { static userid; if (sscanf(params, "u", userid)) return SendSyntaxMessage(playerid, "/cw [text]"); new string[128]; for(new i = 0; i < MAX_PLAYERS; i ++) if(IsPlayerInVehicle(i, GetPlayerVehicleID(i))) SendClientMessage(playerid, COLOR_YELLOW, string); return 1; }