Search Results
Use SA-MP Fixes, it will cause you do the animation twice to get around this issue, also means you wont need to "Pre-load" them under "OnPlayerConnect" & you get all the other benefit fixes. Link...
271
I'm gonna assume it's the number your trying to call try this: Код: if(sscanf(params, "i", number)) return SendClientMessage(playerid, COLOR_GREY, "Usage:{FFFFFF} /call [phone number]"); ...
294
Quote: Originally Posted by Koreadars Is it possible not to use the data parameter as string, but only as integer? (a_http) Code: forward HTTPR(index, response_code, data); instead of Co...
173
Quote: Originally Posted by Kevinas100 how should I make it return a string? Just remove strval() around the "inputtext" that'll keep it as a string Strval converts a string into a int...
261
On your alert box you might want to remove that z-index: 3000 on your notice bar there's no reason to use it since your not overlapping anything plus it overlaps the drop down boxes in the top right m...
1,045
This? https://sampforum.blast.hk/showthread.php?tid=69572 If you download the file in the last post, it has the .wav files in it as well. EDIT: might be previews but in the Tools and Files section...
254
Quote: Originally Posted by AlexMSK Honestly this is shame! The script was sold for more than 1k dollars and now you are releasing it... if that's the case then good; Why should someone...
49,529
Quote: Originally Posted by Immortal99 Yes, its NGG script, I really dont know whats the problem, i increased the variable amound "szMiscArray" still doesnt work If you need to split it...
435
You shouldn't be getting this issue; even in the current script it still as you show it Код: stock SaveGate(id) { mysql_format(MainPipeline, szMiscArray, sizeof(szMiscArray), "UPDATE `gates` SE...
435
Quote: Originally Posted by Kaperstone Encountered the same issue on a clean setup, wondered why 0.2b ain't loading, even tho I had it in my dir/ Код: ---------- Loaded log file: "serv...
20,382
in the enum you need to specify its a 3d text label example: Код: enum E_DRUG_DROP { E_DROP_OBJECT_ID, Text3D:E_DROP_LABEL_ID, E_DROP_DRUG, E_DROP_AMOUNT, Float:E_DROP_X, Float:E_DROP_Y, F...
169
You had a missing } for the if statement Код: CMD:nitro(playerid,params[]) { if(PlayerInfo[playerid][pAdmin] <= 1 && PlayerInfo[playerid][pAdmin] >= 8) { if(!IsPlay...
339
Код: CMD:removewarning(playerid, params[]) { if(PlayerInfo[playerid][pSilverPoint] < 20) return SendClientMessage(playerid, -1, "You don't have 20 Silver Points to remove the warning."); Pla...
221
Pretty sure you just need to define the "west" as a float like this: Код: CMD:west(playerid, params[]) { new Float: West, Float: Pos[3], String[52]; if(sscanf(params, "f", West)) return Send...
281
not sure if your trying to do like can't exceed the numbers so you need to do it like Код: if(value < 0 || value > 10000) { // Not allowed } else batteries[id][count] = value; Presume that...
396
Next Level Roleplay samp.nlvl.org ts.nlvl.org Website About Us: Next Level Roleplay is a small but growing community, just recently we went under reconstruction regarding our ammo system, forums, a...
356
the concept should be the same for server side as the below is this PHP or in-game? PHP Version: This is what you need (I use mysqli): Code: $count = mysqli_query($conn, "SELECT SUM(Items) FROM `t...
321
Maybe its this? Код: if(sscanf(params, "u", criminal, amount)) return SendClientMessage(playerid, COLOR_GREY, "[Usage:] /ticket [ID] [price]."); should be: Код: if(sscanf(params, "ui", crimin...
194
If it's a location specified zone you can use this one: Код: get3dzone(HouseInfo[PlayerInfo[iTarget][pHouse]][hExteriorX], HouseInfo[PlayerInfo[iTarget][pHouse]][hExteriorY], szZone, MAX_ZONE_NAME...
158
Trigger the save to be global i.e not each for players that can cause stress to the database with all the open connections happening over time. If you just trigger it once per 5-10 minutes to those l...
290