10.11.2012, 19:10
So i got this filterscript
I want to make this command for rcon admins only and if you are not in a car i want it to say you are not in a vehicle, thanks
Код:
#include <a_samp> #include <zcmd> #define COLOR_TWAQUA 0x00FFFFAA public OnFilterScriptInit() { print("Welcome to my gold rims filterscript"); return 1; } public OnFilterScriptExit() { return 1; } CMD:goldrims(playerid, params[]) { AddVehicleComponent(GetPlayerVehicleID(playerid),1080); SendClientMessage(playerid, COLOR_TWAQUA, "The vehicle has recieved gold rims."); return 1; }