Search Results
Quote: Originally Posted by Jake__ #pragma unused gCopPlayerSpawns #pragma unused gMedPlayerSpawns No don't do that, Just find the defines in the script and remove them.
1,536
Show us the "FillUp" Function.
124
Top of script Код: new TIME[MAX_PLAYERS]; A command which i think will be good for you, If your using ZCMD, let me know i'll make it for that. Код: if(strcmp(cmd, "/togtime", true) == 0) { ...
122
Код: UsePlayerPedAnims(); Under OnGameModeInit.
70
Код: public OnVehicleSpawn(vehicleid) { new string[32]; if(vehicleid >= 0 && vehicleid <= 2000) { new randnumb = 1000 + random(9999); format(string, sizeo...
104
No one bracket will most possibly cause the errors if not then 2.
152
You fucked up a bracket, Check all new functions commands for missing Код: } or Код: {
152
Код: new string[12]; format(string, sizeof(string),"%d",plate); SetVehicleNumberPlate(CreateVehicle(ID, cx, cy, cz, cf, C1, C2, -1), string); EDIT: New loadcars К...
89
Open your 'Script' With 'Pawno', If you don't know what that is its the Program used to script samp servers, Second press ctrl + F and search for "Joy10 " Now wasnt that easy?
187
You will have to convert it yourself, There is no APP that will convert it for you.
113
You must have a place, where your mods stay and make them load when the car spawns which i guess you have no knowledge on.
89
Machine name: DELL-INSPIRON Operating System: Windows Vista™ Home Premium (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.100218-0019) Language: English (Regional Setting: Englis...
1,884
Tested it, Only ID 0 gets the armour. Edit: Use this works with whole server. Код: forward ArmourUpdate(); public ArmourUpdate() { new Float:armour;//this is our armour value for(new i=i...
336
You forgot to forward it, newbies will get confused, Код: forward ArmourUpdate();
336
Quote: Originally Posted by BlackBank3 I have test this already under OnVehicleSpawn, but that doesn't work. When you start the server Make sure you respawn all the cars first.
348
Код: public OnVehicleSpawn(vehicleid) { if(vehicleid >= 0 && vehicleid <= 2000) { SetVehicleNumberPlate(vehicleid, "{01DF01} DL V1.0"); SetVehicleToRespawn(ve...
348
Well i've got numbers to completely save as they're attached to the car when it is purchased but i am having trouble using Letters in the license plate Here is what i have on OnVehicleSpawn Код...
50