Search Results
Try updating it: http://files.g-stylezzz.com/libmySQL.dll What plugin are you using?
129
Do you have the libmysql.dll library in your sa-mp server root folder? Assuming you're on windows.
129
If you're getting accounts out of the database this wouldn't be happening.
292
Updating to the r34 of the BlueG plugin is still recommended, you won't be forced to use the caching functionality. Are you actually getting the results from the database? Does other queries like INS...
292
I'm not aware of any native NPC controls that allow you to send keystrokes from an NPC, so I guess so.
88
https://sampforum.blast.hk/showthread.php?tid=428066 Look into this, see "FCNPC_SetKeys".
88
I would recommend updating to the latest version of the plugin, then. https://github.com/pBlueG/SA-MP-MySQL/releases/tag/R35 EDIT: pawn Код: new result[50];mysql_fetch_field_row(result,"username...
292
A simple check of the "arma[2][1]" to see if the value is greater than 0, if not set "arma[2][0]" to 0. pawn Код: arma[2][0] = (arma[2][1] < 1 ? 0 : arma[2][0]);
87
Are you storing the result (i.e mysql_store_result())? Also, the mysql_fetch_field_row (or mysql_get_field) parameters are as follows: columnname, destination, i.e pawn Код: mysql_get_field("Admi...
292
Quote: Originally Posted by CuervO That part of the code is commented and it wont affect at all his code.... Had a brain-fart I suppose, but I just had the weird idea that he commented ...
166
You're not utilizing the strcmp function correctly (if you are referring to the commented out code). Strcmp compares two strings, and sscanf dissects a string into variables. Код: *if(strcmp(para...
166
Objects have draw distances, and you may have lowered that distance in the script (see this Wiki article on CreateObject. Another possibility is that you are using an object streamer, but you ought t...
75
Change Код: SetVehiclePos(playerid, x+1, y+1, z); to Код: SetVehiclePos(GetPlayerVehicleID(playerid), x+1, y+1, z);
71
You could also use GameTextForPlayer? If not, a timer (SetTimerEx) calling a public function to hide your TextDraw, like so: Код: public OnPlayerSpawn(playerid) { SetTimerEx("function_n...
172
Just some forwards, put them wherever. Код: forward SetPlayerWantedLevel_Ex(iPlayer, iLevel); forward OnPlayerWantedLevelChanged(iPlayer, iLevel); SetPlayerWantedLevel_Ex() Код: public SetPlay...
167
It's not that hard to store the information about the object in variables, using the ID that's produced when you call Create(Dynamic)Object. PHP код: enum objectData {      objectModel ...
136