Search Results
Known bug: When first time someone's get a kill, it appears on the top list, but when someone else kills someone, it doesn't add his/her kill (the second person's kill) and so on, so only the first on...
70
lol
Change this
PHP код:
format(string, sizeof(string), "AdmCmd: %s has set gang ID %d's bandana to '%x'.", GetPlayerNameEx(playerid), family, color);
Into (Under COMMAND...
82
He just gave an example, in which
Accounts = Your Database Name
faction = The column name, whose value you want to alter
54
I was making a /top CMD, through which players can see the name of the player who got highest score/kills/spree in recent 12 hours.
But, somehow, bugs kept coming, and kept making a new logic, more e...
70
Bump, I need the answer of this question too..
26
Damn I get it now..
You've used the
PHP код:
return 1;
in the loop.. which disables the loop to repeat.
42
Try using this instead:
PHP код:
foreach(Player, i)
{
//your code
}
42
I know right...
I modified your code to make him understand, so that he doesn't get confused between these two.
More precisely, through my code, he would also get a knowledge about the ' use of AND ...
57
PHP код:
if(AdminLevel[playerid] > 0)
{
// Replace 'AdminLevel[playerid]' with w/e the variable name is that you store the admin level in.
// Admin ...
57
The same mistake just like I did before.
Your Min X/Min Y/Max X/Max Y aren't correct.
https://sampforum.blast.hk/showthread.php?tid=276352
Go here for more info!
Rep++ if I helped you please!!
27
read this: https://sampforum.blast.hk/showthread.php?tid=61825
There's no way we can help..
26
Ah.. damn. I just gave an example. You must code the rest by yourself, and make it fit in your gamemode.
57
@AndySedeyn, I would suggest avoid using X337's code, etc for delaying the kick.
Simply add Timer and kick that X337's code or whatever. That's what I do. Simple and Easy to use.
First use this in t...
31
I tried to de-AMX.. but all in vain.
26
Simply by adding something like this:
(Just giving example):
PHP код:
new timer, seconds;
seconds = 10;
SetTimerEx("Robbing" 1000, true, "id", playerid, seconds);
forward Robbing(p...
57
I don't think so, I recommend to use a timer, so that you can backup all the vehicles after some minutes like after 5 mins or so..
That's a better idea.
26
Solution is the simple one, that the filterscript maker didn't add those functions.. So you must have to add them manually in script either by coding them and putting up the correct params,etc.
Or ju...
27
Or just keep it simple and do this if you want to use " i " as the loop variable:
Quote:
new house;
for (new i= 0; i != MAX_HOUSES; i++)
house = i;
That's more like it.
Reaso...
83