Search Results
It will be these two together: Код: SpawnedObject[objects] = CreateDynamicObject(objectid, X, Y, Z+1, 0, 0, 0); ObjectSpawned[SpawnedObject[objects]] = 1; // <----- this line CreateDy...
394
This is a hook method I came up with long ago (before hook method 7, i.e. modern ALS). It uses states to determine if a hook exists or not. This was previously documented, but that documentation is b...
1,117
Quote: Originally Posted by introzen 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][H...
403
So, again, two of your cases have the same ID, I don\'t know whats so strange to understand about that.
368
So I said it isn’t that one, referring to the inner switch in the code you posted. I forgot about the outer one - what is the value of DIALOG_COMMANDS? I guess 11, and I also guess another dialog ...
368
Your plugins do load, but apparently you\'re still missing something. So either one of them is out of date, or you need another one. Try the nativechecker plugin - it won\'t solve the issue but will...
370
Quote: Originally Posted by antixgaming I didn't say that I don't get it. I agree with you. Why are you attacking me now? Because: Quote: Originally Posted by antixgaming I...
1,060
I'm glad you solved it. So it was the function calls then?
334
Quote: Originally Posted by ComDuck Although, I was thinking of an idea where you can compress each XYZ coordinates into a single line and separate the X, Y and Z float values with a sepa...
53,479
Just don't use the built-in HTTP function at all. There are better plugins, such as "requests".
53,479
Quote: Originally Posted by TheToretto Notice some invalid weapons ID’s values were replaced by 1239. Why?
451
Maybe I should have given them they benefit of the doubt - sorry. You're right, the ability to detect natives at run-time and configure them is not a totally original idea; we've wanted it for a long...
898
After quite a debate, I do see the point of using a plugin to detect plugins, especially when as you say it means existing plugins are already compatible. Side note, I already tried enums for the IDs...
534
Plugins provide natives to do things. This is great, but if you write a library sometimes you want to do one thing if the plugin exists and another thing if it doesn’t. Until now the best way was ...
534
Seems like one to me. How is it not?
37,854
Quote: Originally Posted by Dayrion Because his code is bad, we must encourage him to commit suicide? That's nice from a forum moderator/beta tester and also, as an humain being. I didn...
903
Quote: Originally Posted by Bolex_ 'Faster and Easier' ? Take a knife and stab yourself, something like this isn't even for a half-star. Quote: Originally Posted by Dayrion ...
903
Octal Numbers Introduction The PAWN language has base 10 (decimal) numbers (1, 9, 10, 55, 34593493, etc), base 16 (hexadecimal) numbers (0x1, 0x9, 0xA, 0xFF67BA03, etc), and base 2 (binary) numbers (...
640