Search Results
Didn't understand well what you meant by "add one demonic NPC at a coordinate" so i'll just assume you want the first one to be at random coords so: Код: new IsDemonicOne[MAX_PLAYERS]; new Demoni...
86
Код: if ((targetid = GetNumberOwner(number))) to Код: if (targetid == GetNumberOwner(number)) By the way you should show us the entire code of "GetNumberOwner" and stuff like this since the c...
228
Код: sudo apt-get install openssl Код: sudo apt-get install libssl1.0.0
213
Код: forward FourDragonRobbery(); public FourDragonRobbery() { new TimerCompleted[MAX_PLAYERS]; for(new i=0; i<MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) /...
204
Just get the formatted string outside the loop and you'll have no problems
204
Like SIthis said it depends, imo it's always better to restart the whole server (if you can)
103
Код: GetPlayerWeaponData(playerid, slot, &weapons, &ammo) https://sampwiki.blast.hk/wiki/GetPlayerWeaponData You can use this to get the ID of a weapon, there's an example too inside the ...
243
Maybe you got a broken GTA, try to re-install it
125
Code: CreatePlayer3DTextLabel(playerid, text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, attachedplayer, attachedvehicle, testLOS) Code: Attach3DTextLabelToPlayer(Text3D:id, playerid, F...
176
Can you post your code? So we can take a look at it. My guess btw is that there's too much load on the gamemode of objects so the engine is making strange things.
125
You simply have defined idcar two times, so you got two same variables, you have to rename one of the two idcar
60
does MySQL plugins work on ubuntu too?
1,493
If the vehicle is black there may be an error with COLOR IDs somewhere in your script, like RogueDrifter said maybe somewhere you got overlapping code
125
Are you sure that you're not using any other includes inside your gamemode or plugins that maybe overlap with your script?
139
Did you put everything inside OnGamemodeInit?
73
Quote: Originally Posted by Loinal Nope, i uses the numbers in my password "u" contains numbers too. "f" contains only a float number, nothing more.
236
Quote: Originally Posted by Loinal So its better to use "u" or "f"? password can be integer or name it's better to use "u" since "f" is a float and you don't usually put your passwords ...
236
Код: Specifier(s) Name Example values i, d Integer 1, 42, -10 c Character a, o, * l Logical true, false b Binary 01001, 0b1100 h, x Hex 1A, 0x23 o Octal 045...
236