Search Results
This seems to be unused.
pawn Code:
new bool:IsDead;
If you were to use it, surely you'd have to do
pawn Code:
new bool:IsDead[MAX_PLAYERS];
What is your intention with the timer? If you want the ...
252
I'm too old for this
13,850
pawn Code:
new freeObjectId;for(new i=0; i<MAX_OBJECTS; i++) { if(!IsValidObject(SpawnedObject[i])) { freeObjectId = i; break; }}SpawnedObject[i] = CreateObject();
...
236
Try commenting out HouseLabel[i] and both HousePickup[i]'s and see if it works, then you know there's an error in the syntax. I'd think it would've shown during compile though but couldn't hurt to try...
687
Quote:
Originally Posted by akib
When I commented UpdateHousePickup, it works fine but whats wrong in UpdateHousePickup?
Well, my money will be on the dots in your arguments. You define...
687
Just as the error itself tells you, you're trying to save an int value to a pre-defined string.
Code:
error 035: argument type mismatch (argument 2)
pawn Code:
cache_get_value_int(0, nameOnTable, sk...
329
I'm unfamiliar with the mysql plugin for SAMP so I can't help you on that.
I'm unsure what the "." does in this?
pawn Code:
.worldid = HouseInfo[i][HouseExteriorVW], .interiorid = HouseInfo[i][House...
687
Found this snippet by using the search function. Don't know if it's what you're looking for though.
pawn Code:
Function:Reverse(string[]){ // Setting vars new string1[256]; ...
499
You also have
Code:
[13:06:50] Loading filterscript 'NoahF's.amx'...
[13:06:50] Unable to load filterscript 'NoahF's.amx'.
[13:06:50] Loading filterscript 'RickRoll.amx'...
[13:06:50] Unable ...
406
If you can't figure out why your speedometer is getting messed up with the implementation of NPC's, you probably shouldn't implement NPC's until you have that knowledge. You would need a general under...
161
You could set it up in different ways, all according to your preference, but the basics of storing information in a database remains the same.
- You create a database and table to hold all vehicle in...
179
Please read the forum rules before posting.
Quote:
Use A Proper Subject - So not "[HELP] SERVER [HELP] ROUTER [CRITICAL]!!!!!!!!!!" but something like "My router crashes when I port forward". It ...
406
Yes. You're already checking for, and defining issuerid, so just use that together with
pawn Code:
GetPlayerScore();SetPlayerScore();
168
Perhaps I'm mistaken since I'm not used to y_ini, but does LoadServerData load the settings.ini data into the enum? If so, show us the SaveServerData counterpart.
608
Please show us the script where you're saving the ServerInfo to server.ini.
608
Quote:
Originally Posted by Hammad123
Do you mean
pawn Code:
if(playerData[playerid][playerLevel] < Level_Here )
instead of this:
pawn Code:
if ( playerData[playerid][playerLevel] &...
467
If you still want your indentation you can use:
PHP код:
new tmp1, tmp2, tmp3, tmp4;
184
Quote:
Originally Posted by colonel-top
You need to Mix Your Filterscripts With You administrator filterscripts because its different section
So when you mixed it Just add condition Like :...
404
I prefer option 3 with indentation.
365