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 ...
138
pawn Code: new freeObjectId;for(new i=0; i<MAX_OBJECTS; i++) {    if(!IsValidObject(SpawnedObject[i])) {        freeObjectId = i;        break;    }}SpawnedObject[i] = CreateObject(); ...
108
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...
419
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...
419
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...
165
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...
419
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];     ...
271
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 ...
278
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...
84
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...
104
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 ...
278
Yes. You're already checking for, and defining issuerid, so just use that together with pawn Code: GetPlayerScore();SetPlayerScore();
91
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.
306
Please show us the script where you're saving the ServerInfo to server.ini.
306
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] &...
310
If you still want your indentation you can use: PHP код: new tmp1,    tmp2,    tmp3,    tmp4; 
103
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 :...
239
I prefer option 3 with indentation.
216