18.06.2012, 15:35
Quote:
Avi, is there a specific place i need to put the code in Pawno? or can I just lay it somewhere?
|
Make a new .pwn file - Paste it in, save it as soemthing E.G "Vehsystem", Compile it (F5), then once the AMX is there, drag it over int oyour server - And in your server.cfg, on the 'filsterscripts' add the 'Vehsystem' there, or whatever you called it and re-run your server
Also, respawning cars;
pawn Код:
CMD:respawn(playerid, params[])
{
new string[128], veh;
if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
if(PlayerInfo[playerid][pAdmin] < 4) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
// if(!aDuty[playerid]) return SendClientMessage(playerid, COLOR_GREY, "You are not on admin duty.");
if(!strcmp(params, "all", true))
{
for(new i=0; i<MAX_VEHICLES; i++)
{
if(i != NPCBus)
{
new vehs;
foreach(Player, x)
{
if(GetPlayerVehicleID(x) == i)
{
vehs = 1;
}
}
if(!vehs)
{
SetVehicleToRespawn(i);
}
vehs = 0;
}
}
format(string, sizeof(string), "AdmCmd: %s has respawned all unused vehicles.", RPN(playerid));
SendClientMessageToAll(COLOR_LIGHTRED, string);
return 1;
}
if(sscanf(params, "i", veh)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /respawn [vehicleid/all]");
SetVehicleToRespawn(veh);
format(string, sizeof(string), "AdmWarn: %s has respawned vehicle ID %d.", RPN(playerid), veh);
SendAdminMessage(COLOR_DARKRED, 1, string);
return 1;
}
/respawn (in a car will respawn the car you are in)
/respawn [VEHICLEID] (when not in a car, will respawn the specified ID (/dl can be used to get the ID's of cars)
/respawn all = Does as it says on the tin.