Search Results
Quote: Originally Posted by Pottus new Text:gTD_Location[MAX_PLAYERS]; Use player textdraws you could also use the streamer and dynamic areas instead of a timer. Thanks, I forgot play...
441
http://pastebin.com/X4i4BwwP
441
About: This script will show players their location. It will be shown beneath their minimaps. Location is by default updated every one second, but you can change it if you wish to by redefining UPDAT...
441
You have to create folder called "plugins" and put them there, not just only write their name in config file. If you have done that, make sure you haven't downloaded Linux version.
104
It requires sscanf2 and y_commands. Dice numbers can be from 1 to 6 and can not be the same. When player invites someone to dice, dialog shows up to invited player, so it is more likely that invited p...
92
Suggestion for future version: pawn Код: native mysql_query_file(connectionHandle, file[], callback[] = "", format[] = "", {Float,_}:...);native mysql_tquery_file(connectionHandle, file[], callba...
96,120
Quote: Originally Posted by maddinat0r 1. Just like you would handle them with the standard cache system: as a string. 2. No, it doesn't reset the variables like orm_delete, but that would...
3,746
Hello! I'd like to use ORM, but I have few concerns. 1. How to handle fields like DATETIME? 2. Does orm_destroy also reset ORM associated variables (like orm_delete does) or do I have to do it manual...
3,746
The best way would be to use MySQL C/C++ connector instead of the plugin, of course if you're not going to need MySQL in scripts anymore. If you're used to the plugin or you need MySQL in pawn scripts...
11,680
Fastest solution I came up with (probably while you were writing your last post, I didn't see it). Basically, I just got offset from packer and the location where the cars should be. pawn Код: pu...
147
Can somebody figure out why this doesn't work? (CreateDynamicObject from Incognito's Streamer Plugin) Код: int CreateDynamicObject(int modelid, float x, float y, float z, float rx, float ry, floa...
11,680
Excellent update Zeex, exactly what I needed! Thank you! EDIT: Note to everyone linking against the static library, you have to build subhook and add it to your project!
11,680
Did you even read my post? Edit: Nevermind, solution found - I'm using protected file (db_credentials.cfg), read from it and then connect to the server.
69
Hello! How to secure password when connecting to (for example) MySQL server? Код: #define MYSQL_PASS "password" mysql_connect(... MYSQL_PASS ...) Obviosuly this is not the correct way to do it, s...
69
It's not possible to do it, you can't use compiler directive inside another one. Why would you need it anyway?
55
Save object ID, X offset, Y offset, Z offset, X rotation, Y rotation, Z rotation, then load that data and attach that object to vehicle under OnPlayerEnterVehicle callback.
56
You don't have that enumeration in your script. You can use if(IsPlayerAdmin(playerid)) instead, but then you'll only be able to use the command as RCON administrator.
62
I believe that this is the problem. pawn Код: INI_WriteFloat(file,"Health",GetPlayerHealth(playerid, healthp[playerid])); It should be: pawn Код: GetPlayerHealth(playerid, healthp[playerid]);...
80
Definitions are processed in pawn pre-processor, so no, you can't do it, and there is no reason why you would want to do that.
188