Search Results
You placed the brackets wrong. if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 414)
107
You need to shed some light about how you've coded it.
144
Quote: Originally Posted by Exhibit this should be posted in the plugins topic. Edited it.
111
Apparently using the DCC_GetUserEmail returns a null string. Even though the DCC_User which is being passed has a valid email address. EDIT: Does anyone have a fix for it?
111
Nevermind. Found the answer. http://forum.sa-mp.com/showthread.ph...22#post2554322
79
Код: new Iterator:tots<5>; Iter_Add(tots, 1); Iter_Add(tots, 4); Iter_Add(tots, 6); foreach(new i: tots) printf("%d", i); Output Код: 1 4 I need it such that I can add values outside ...
79
Number of braces opened in cmd_gateopen = 4 Number of braces closed in cmd_gateopen = 3
207
You can check if the variables were changed and only save those variables. And FYI sizeof is a special miscellaneous operator. Not a function.
155
This is the object that you'll need. https://dev.prineside.com/en/gtasa_s...earch/?q=19300 Now what you need to do is, Create the object. Save the variable. Use it to attach it to the player. Then a...
163
If the command is let's say CMD:kill(playerid, params[]) Then it should be "return cmd_kill(playerid, "");
76
There should be a ! before strcmp. strcmp returns value 0 if the strings match. And the loop should not be <= MAX_PLAYERS. The playerid starts from 0 and ends at MAX_PLAYERS - 1. That's how the in...
115
Just curious. In the modular script since you're re-defining ResetData(). Are you adding new functions to it. Or is it the same as the public one?
150
Mind showing us some snippets to your code. Especially where it states that there is an error.
150
Doesn't work with ******* links.
147
I was wondering if there's any such operator for token paster just like C has. the ## It would be great to actually format the variable name itself using it if it's indeed possible.
58
PHP код: #define DIALOG_HELP 0 #define DIALOG_SUPPRESSION_HELP 1 CMD:help(playerid, params[]) {     ShowPlayerDialog(playerid, DIALOG_HELP, DIALOG_STYLE_LIST, "Commands", "Suppres...
46
What!? Please rephrase your question. Express it properly.
67
Quote: Originally Posted by [HLF]Southclaw And I'm not sure he understood you, the answer wasn't really relevant... Anyway, you can control hook order by ordering the hooks themselves. Th...
149
Quote: Originally Posted by SoFahim You can take a hook into the main public callback. Not possible to take public callback to a hook(?) For making the order, you can just put the line u...
149