Search Results
Код: if(pInfo[playerid][Admin] == 1) { ShowPlayerDialog(playerid, 511, DIALOG_STYLE_MSGBOX, "Admin commands", "{EFB509}Level 1{FFFFFF}: /aspec, /specoff, /asay, /mute, /achat, /kick, /s...
131
No funciona porque nunca utilizaste la funciуn que envнa la consulta. La funciуn "db_free_result()' se utiliza para liberar el resultado de una consulta. PHP код: CMD:registrar(playerid, p...
112
You can't do format a text with the function "TextDrawCreate". First create the text and then format beams. PHP код: TextClass[playerid] = CreatePlayerTextDraw(playerid, 486.875000, 154.0...
142
PHP код: #include <a_samp> #define CHECKCP_SIZE 12.5 new bool:ParticipoMaraton[MAX_PLAYERS]; new ProgresoMaraton[MAX_PLAYERS]; static const Float:MaratonCP[10][3] =  {    ...
179
Add a tag. pawn Код: new INI:file = INI_Open(pFile(playerid));INI_SetTag(file, "My_Tag");INI_WriteString(file, "Password", "Test");INI_Close(file);
89
Connection to the mysql database was failed. You need to create the database.
173
Try. Код: echo Executing Server Config... lanmode 0 rcon_password ----- maxplayers 30 port 7777 hostname Repexlona Gaming [0.3.7] gamemode0 roleplaying filterscripts buildings oupdates plugins Me...
131
Change bt: Код: new Float:X, Float:Y, Float:Z; GetPlayerPos(id, X, Y, Z); SetPlayerPos(playerid, X+1, Y+1, Z);
89
Quote: Originally Posted by SickAttack Si no quieres contestarla, no lo hagas. Me gustarнa ver que tu actitud cambie, estas dejando mala vibra en casi todos los threads que comentas. No s...
108
Hola, intento hacer un macro y no entiendo porque me da advertencias, me parece que estб bien: PHP код: #define Bit_Set(%1,%2,%3) ((%3)?(((%1)|=(%2))):(((%1)&= ~(%2))))  Intento ...
148
I doubt that you save 10 thousand characters in each player, so that is the only solution friend, you must make good use of the variable strings, there is no other way to optimize, optimize in string ...
259
It is very large the size of the amx because you lot of memory in your variables, to optimize that you need to search the parts of code that used these variables, count the maximum number of character...
259
PHP Code: #include <a_samp>#include <YSI\y_ini>#include <YSI\y_inline>new Float:x1, Float:y1, Float:z1;main(){    inline loadpos(string:name[], string:value[])   Â...
176
I would like to explain everything in detail but I don't have enough time to do so. An example with 10 checkpoints. PHP код: // This is a comment // uncomment the line below if youÂ...
144
https://sampforum.blast.hk/showthread.php?tid=549869
163
The code is not readable, i like this but I can't understand the code in the form that you've posted .
390
change by this PHP код: new string1[64]; format(string1, sizeof(string1), "%s (Slot %d)", pClothingName[playerid][slot], slot+1); 
307
You must replace all the lines. PHP код: new string[10];MyFunction(..){    new string[10];        string = "hello";        string = "hello2";        string =...
307
Change: PHP код: new string[128];  by: PHP код: new string1[128];  And replaces all the lines in the function that use that string variable by string1, the problem is tha...
307