Search Results
pawn Код:
public OnVehicleMod(playerid, vehicleid, componentid){Â Â printf("[OnVehicleMod]: '%s(%d)' has attached %d on %d", pName[playerid], playerid, componentid, vehicleid);Â Â if(BoughtVeh...
40
I didn't fix it, but found a solution.
It crashes with Bcrypt_REHASH, so I can't use this option.
32
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...
45
Are you using any filterscripts that return 0 in OnPlayerRequestClass?
74
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...
32
Код:
enum e_Items
{
iName[20],
iModel,
iLootSpawn
}
static stock
g_Items[][e_Items] = {
{"Sandwich", 2663, true},
{"Kebar Roll", 2769, true},
{"Burger", 2768, true}
};
Try ...
93
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",...
36
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 ****...
26
I think you should open this thread here:
http://forum.sa-mp.com/forumdisplay.php?f=19
47
Код:
RewardPlayer(playerid, Money, Points)
{
new query[128];
Player[playerid][pMoney] = Player[playerid][pMoney] + Money;
Player[playerid][pScore] = Player[playerid][pScore] + Points;
SetPlaye...
26
PHP код:
new t = GetPlayerVehicleID(playerid), m = GetVehicleModel(t);//Explained earlier
    if(!IsTrailerAttachedToVehicle(m)) return SendClientMessage(playerid,-1, "You need ...
32
PHP код:
format(szQuery, sizeof(szQuery), "UPDATE players SET SMSLog = %d, TriageTime = %d, Married = %d, MarriedTo = '%s', Flag = '%s', ReferredBy = '%s', RefTokens = ...
25
It gives me an error in this line:
Код:
for(new i = 0; i < sizeof(TempVehicleName[playerid]); i++)
44
Код:
TempVehicleName[MAX_PLAYERS][5]
Код:
new const
vNames[212][] ={
"Landstalker", "Bravura", "Buffalo", "Linerunner", "Perrenial", "Sentinel", "Dumper", "Firetruck", "Trashmaster",
...
44
PHP код:
forward printOwnedVehicles(playerid);
public printOwnedVehicles(playerid)
{
     for(new i = 0; i < sizeof(TempVehicleName[playerid]); i++)
    {
        Â...
44
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.
38
Do you have
PHP код:
ShowPlayerMarkers(1);Â
under you're
PHP код:
public OnGameModeInit()Â
?
44