Search Results
Can you show the definition of "fb" ?
96
I am not a pawn expert but maybe you shouldn't compare Floats with Integers (e.g. Velocity[0] == 0). Try to change this to Velocity[0] == 0.0.
93
Well checkpoints can usually be destroyed using "DisablePlayerCheckpoint", though I do not know if you are talking about a usual checkpoint in this case.
51
Quote: Originally Posted by Rufio An infinite loop is, as the name suggests, an infinite loop that keeps repeating endlessly because the required value is never reached. An example for an ...
121
You should think about making a plugin to insert your native functions like sin/cos. Btw. Why do you need complex numbers in SA:MP?
85
try to find it in their "objects by caterogy" list, although I don't know if they will appear. Edit: I've searched it, but couldn't find it in their list.
154
Use [ php ] [ /php ] This is unreadable.
207
Show us your code. There must be something wrong with it.
207
You do not need to add Create3DTextLabel in the OnPlayerConnect lines. You can create them anywhere by the way. Just make sure that the virtual world is the same and that you are using the proper coo...
145
Some differences: " MYISAM: MYISAM supports Table-level Locking MyISAM designed for need of speed MyISAM does not support foreign keys hence we call MySQL with MYISAM is DBMS MyISAM ...
185
You did not change the Collation for the Columns but for the whole database. You can see that it still shows "utf8-general-ci" for each table.
185
Quote: Originally Posted by Vince By default, yes. But in reality it only depends on what was selected as the collation for the column. If the collation wasn't changed then it likely is la...
185
Your username problem is probably because MySQL string values itself are not case sensitive. This means "FaLLENGIRL" is the same as "fallengirl". Well, you can solve that problem using the keyword "bi...
185
"if( sscanf( inputtext, "s[25]", lPassword ) )" This is in your DIALOG_LOGIN dialog. Well, this just stores the string inputtext to lPassword which means that there is no comparison at all if the pass...
185
Quote: Originally Posted by GoldenLion False. Only threaded queries have a callback. If you want to do a non-threaded query then you will need to save the cache and get the stuff from it t...
220
You just have to follow the instructions. I think the main problem for you is that mysql now uses a callback which means that you need two functions. One function "LoadAirline" to setup the SQL Query ...
220
Quote: Originally Posted by AndreiWow Can I make the sound follow a vehicle? Like make my custom police siren? Check out the wiki: https://sampwiki.blast.hk/wiki/PlayAudioStreamForPlaye...
148
1. Could you provide the whole output please? 2. Get sure your variable "ranks" has the right value 3. Try printing all the FamilyRanks after assigning them "none": PHP код: for (new j; j &...
170
Where did you get that SendClientMessageEx from? Some of them only support 2 parameters.
170