Search Results
pawn Код: public OnVehicleMod(playerid, vehicleid, componentid){    printf("[OnVehicleMod]: '%s(%d)' has attached %d on %d", pName[playerid], playerid, componentid, vehicleid);    if(BoughtVeh...
118
I didn't fix it, but found a solution. It crashes with Bcrypt_REHASH, so I can't use this option.
88
1. The less the variables, the better for the script size. For the players, I don't think it's that beneficial. 2. Bool (true/false) 3. It's best for you to test the gamemode and see how it works when...
98
Are you using any filterscripts that return 0 in OnPlayerRequestClass?
165
I'm having problems with my server crashing after I enter my login password. This is the error: pawn Code: [23:05:38] [debug] Server crashed due to an unknown error[23:05:38] [debug] Native backtrac...
88
Код: enum e_Items { iName[20], iModel, iLootSpawn } static stock g_Items[][e_Items] = { {"Sandwich", 2663, true}, {"Kebar Roll", 2769, true}, {"Burger", 2768, true} }; Try ...
251
Timer problem? Код: HTimer = SetTimer("AntiHealthHack", 30000, 1); // All 3.0 Seconds a check HTimer2 = SetTimer("CameraHack", 3000, 1); // All 3.0 Seconds a check HTimer3 = SetTimer("NightHack",...
119
For starters, please put your code inside this: pawn Код: [code][/code] And explain the question better because I don't understand how can we help you. If you are bad with English, try using ****...
85
I think you should open this thread here: http://forum.sa-mp.com/forumdisplay.php?f=19
128
Can you give me your router model?
117
Код: RewardPlayer(playerid, Money, Points) { new query[128]; Player[playerid][pMoney] = Player[playerid][pMoney] + Money; Player[playerid][pScore] = Player[playerid][pScore] + Points; SetPlaye...
86
PHP код: new t = GetPlayerVehicleID(playerid), m = GetVehicleModel(t);//Explained earlier     if(!IsTrailerAttachedToVehicle(m)) return SendClientMessage(playerid,-1, "You need ...
104
Give me this: IsTrailerAttachedToVehicle
104
PHP код: format(szQuery, sizeof(szQuery), "UPDATE players SET SMSLog = %d, TriageTime = %d, Married = %d, MarriedTo = '%s', Flag = '%s', ReferredBy = '%s', RefTokens = ...
76
It gives me an error in this line: Код: for(new i = 0; i < sizeof(TempVehicleName[playerid]); i++)
235
Код: TempVehicleName[MAX_PLAYERS][5] Код: new const vNames[212][] ={ "Landstalker", "Bravura", "Buffalo", "Linerunner", "Perrenial", "Sentinel", "Dumper", "Firetruck", "Trashmaster", ...
235
PHP код: forward printOwnedVehicles(playerid); public printOwnedVehicles(playerid) {      for(new i = 0; i < sizeof(TempVehicleName[playerid]); i++)     {         Â...
235
Commenting is when you use // And it is only used for a single line, while /* and */ can be used for a whole script if you want to.
146
https://sampforum.blast.hk/showthread.php?tid=437671
119
Do you have PHP код: ShowPlayerMarkers(1);  under you're PHP код: public OnGameModeInit()  ?
104