Search Results
Quote:
Originally Posted by davidbull
i got errors when compile
I would suggest trying the following things:
- Make sure you have the latest .inc file, or the one that corresponds to th...
62,421
Quote:
Originally Posted by Konstantinos
There is a problem with the new version (on Windows).
The objects disappear for a second and then are shown back. It happens when I moving fast o...
169,479
Thanks for the quick reply.
Indeed, it seems to be a small mistake in the code there. All the size indexes are offset by 1.
Well...glad I could help =)
///Update: The 2.8.1 version fixes the issue...
169,479
Hello.
Just wondering, has anybody had any issues with CreateDynamicObjectEx in version 2.8? It doesn't seem to work anymore, at least for the following case:
Код:
new vwArray[24] = {1550, 1551, 1...
169,479
If you're talking about Incognito's streamer, use this: https://github.com/samp-incognito/sa...etVisibleItems to increase the number of objects in a stream. However, keep in mind that SA:MP itself can...
178
It doesn't have a name, it's a normal dialog, just like other dialogs.
First, you will display a general dialog that contains the main categories.
ShowPlayerDialog(..."Departments\nOther Factions\nBa...
184
You declared a function AFTER you used it in the code.
PHP код:
someFunction(){myFunc();}myFunc() {//code}
You should first declare the function, then use it.
169
The variabile pHashPW is an integer and I think udb_hash returns a string or something different than integer. Fix the data types and use the correct comparator (strcmp to check if string equals strin...
287
I don't think your code crashes the server (but you should definitely optimize it, that use of loops is so wrong), probably it's because of the timer (PTimer). Maybe SA:MP has an internal Timers limit...
319
Confirmed, I reported this bug as well some time ago: https://sampforum.blast.hk/showthread.php?tid=564138
I really hope it gets fixed ASAP.
344
Quote:
Originally Posted by norton2
If you go from 0 everything is ok, but you can not go from ID 1?
A PAWN array's index starts from 0. This means that if you do "new Array[2];", you w...
340
Wasn't this crash related to the crack? I've encountered an issue that required me to mount the virtual GTA disk to be able to run the game. Try mounting it (or inserting the installation disk if you ...
263
The code you posted should work too.
To include variables in strings (such as player names), use the "format" function: https://sampwiki.blast.hk/wiki/Format
Код:
new string[64], pname[24];
GetPl...
340
If you're using Streamer, you should consider using CreateDynamicObject instead of CreateObject.
341
Here you go. I've added only the basic stuff, you can format the strings before sending them so you can include the target player name in the message sent to the admin, for example.
Код:
COMMAND:...
340
Check out this topic: https://sampforum.blast.hk/showthread.php?tid=574714
You will find step by step instructions on how to make a Register system using Threaded queries.
131
You have to extract the "user" param from the "params" string. For this, since you're already using ZCMD, I'd recommend installing (or using, if you have already installed it) SSCANF: https://sampforu...
340
Have you checked any Filterscripts or Includes that you might have for hidden (but created) textdraws? I'm not saying that you are wrong, but I believe it's highly unlikely for this kind of bug to exi...
302
The gamemode's size becomes larger because of the MAX_PLAYERS define or some other define that sets your arrays sizes in your gamemode. My guess is that you had a lower players limit in the previous v...
188