Search Results
Quote: Originally Posted by Akcent_Voltaj plz its been 24 hours and no one is helping me All we can do is to guess a reason for this, since you didn't actually provided more details or ...
181
Have you tried to look for this problem at this include's main topic?
157
Please provide the CreateProgressBar function.
157
Try this: pawn Код: if(IsPlayerInAnyVehicle(playerid)){    if(newkeys & KEY_ANALOG_RIGHT)    {        if(IsPlayerInAnyVehicle(playerid))        {            new currentveh; ...
53
Search for strings that defined to be more than 128 chars at the script and switch them to 128 or less. pawn Код: new var[256];
95
This stock/public does not defined(exist)?
148
Quote: Originally Posted by Dubya Hello, I am working on a role-play script, and I am wondering if it is possible if I can make it so that '/q' (exits client) to check if they are in a pol...
105
Do you receive errors from the compiler?
60
Quote: Originally Posted by Jernu Wrong! It teleports me to Blueberry(Default coords at 0.00000) Meh, I'll try it. That is a fact, how can I be wrong? In your case, you get teleported ...
97
Quote: Originally Posted by ****** That's not a string, but you set it to a string in the command - you can't do that. Yup, you haven't declared that as a string, but you did count that...
140
It's most likely because of the "return 1" inside the loop, which ends if it finds an online admin(?) - it it does, just remove it instead. Quote: Originally Posted by Anak PHP код: ...
139
It doesn't sets your coordinates to the default 0.0000 etc, it just teleports you to the beach at Los Santos. 0 coords are referring to the middle of the San Andreas map, at Blueberry - next to the fa...
97
PHP код: stock FormatNumber(value) //RyDeR` {     new         string[24]     ;     format(string, sizeof(string), "%d", value);          for(new i = (strlen(...
76
You can't kill players who are alt-tabbed/afk..
79
Try: pawn Код: stock RocketPos(vehid, Float:x, Float:y, Float:z){    if(GetVehicleModel(vehid)) == 411)    {        GetDynamicObjectPos(infmgun[vehid], x, y, z);        return 1;    ...
167
Quote: Originally Posted by 101 You don't need to convert anything, take the includes from 0.3x and compile it. As this being said, just recompile your script and place the new [0.3x] (...
91
Quote: Originally Posted by Yordan_Kronos i remove pragma .. and yea i see only more warnings which i must fixed after this. Thanks for information for "error 025" i think that i must edi...
73
PHP Code: dcmd_admins(playerid,params[]) {     #pragma unused params     //new count = 0;     new string[128];     new PlayerName2[MAX_PLAYER_NAME];     for(new i = 0...
90
"#pragma tabsize 0" is for lazzy scripters, you should remove that and tab all the script to get a better view instead of ignoring them which an error might occur and the compiler will simply ignore. ...
73
Quote: Originally Posted by Hardy1995 I Found code, But here not numbers. Код: stock SetMoney(playerid, amount) { PlayerInfo[playerid][pCash] = amount; ResetPlayerMoney(playeri...
136