Search Results
The plugin may be multithreaded but pawn is not. The plugin cannot pass a value to the callback because its executing your loop and execution won't be handed back until it finishes (which of course, i...
67
pawn Code: HouseInfo[iIndex][hTextID] = CreateDynamic3DTextLabel(szFileStr, COLOR_GREEN, HouseInfo[iIndex[hExteriorX], HouseInfo[iIndex][hExteriorY], HouseInfo[iIndex][hExteriorZ]+0.5,30.0); Replace...
249
Ok there is a few problems with what you've got going. pawn Код: new escpass[129], FinalPassword[132], passwordstring[132];WP_Hash(passwordstring, sizeof(passwordstring), FinalPassword); You're d...
81
Its truly amazing the lack of networking knowledge on these forums; personally I do not know the addresses of the servers queried to add information to the master list; and I can't really see why you ...
160
Yeah, but you're trying to run the .dll files, .dll is for windows .so is for linux...
143
From looking at the services running on your IP address from your first post; you are running a LINUX host. A linux host requires the .so files, not .dll. Go back to the topics for each plugin you use...
143
To split the dates as you have up, you could use sscanf: pawn Код: new year,month,day;sscanf("2012-02-23","p<->ddd",year,month,day);printf("Year: %d Month: %d Day: %d",year,month,day); //Pri...
101
You have to run the php files on a php compatible webserver, its not like html where you can just browse it locally. If you want to set up something quick and easy on your home computer then you could...
118
Quote: Originally Posted by ProfeQ Код: CMD:slap(playerid, params[]) { if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0x708090FF, "You are not a admin!"); ...
176
Your problem is here: GetVehicleName(OwnedCar(Player[playerid][CarKey1])) Your GetVehicleName function expects the vehicleid, but looks like you're feeding it some other id from an array (perhaps an ...
131
The current version of the IRC plugin works absolutely fine with 0.3e. See the link Cxnnor provided.
97
Looks fine to me; it doesn't use MySQL at all...what do you mean exactly by not working.
201
Well the only thing which might be causing problems relating to MySQL is the Log() function.
201
Well perhaps there is something in OnPlayerSpawn which is causing it to return early, or there may be a runtime error of some sort; if you can't spot it immediately, try the crash detect plugin, it ma...
201
Quote: Originally Posted by ****** If you get this error, DO NOT just download the dll from a random website (click here for why). Not a good idea; I don't really need to add anymore to ...
188
Have you rebooted the server after installing?
188
As already highlighted by ****** in THIS thread, you need to download the Microsoft Visual Studio Redistributable Package
188
Quote: Originally Posted by [FU]Victious Nice spelling of 'Houston'.. Why use 'Houston - we have problem'? Makes you look like an utter tard And posting irrelevant and insulting comment...
201
There is a LOT of material on these forums about port forwarding, just look around, there really is no need for me to repeat what others have said. There are also plenty of tutorials online for every ...
229