Search Results
Remove multithread.so and debug.so from your plugins line in the server.cfg.
93
Quote: Originally Posted by CalvinC You function should be like this: Thank you! I was struggling to find the solution haha.
101
pawn Код: CMD:createbusiness(playerid, params[]){    if(GetAdminLevel(playerid) >= 5)    {        new BizName[40], Float:BizIntX, Float:BizIntY, Float:BizIntZ, Float:BizExtX, Float:BizE...
101
This is the line: pawn Код: if(GetPlayerNameEx(playerid) == BizInfo[IsInBusiness[playerid]][bOwner]) Saying "GetPlayerNameEx" must be indexed.
112
Quote: Originally Posted by ATGOggy Remove everything else and just use these: PHP код: #define MAX_DVEHICLES 500 enum vInfo {          vModel,     vID,     Float:...
212
pawn Код: #define MAX_DVEHICLES 500 And for the files. pawn Код: [Vehicles]vModel = 560vX = -1509.387939vY = 767.996398vZ = 7.187500vA = 65.842666vJob = 0vFaction = 1Color1 = 0Color2 = 0vWeed...
212
Quote: Originally Posted by ATGOggy Change PHP код: for(new i = 0; i < MAX_DVEHICLES; i++)  to PHP код: for(new i = 0; i < MAX_VEHICLES; i++)  ...
212
So I've got this under OnGameModeInit: pawn Код: for(new i = 0; i < MAX_VEHICLES; i++)    {        if(!fexist(VehPath(i))) continue;        LoadVehicles(i);        VehCount++;  Â...
212
Quote: Originally Posted by cuemur Can i add here slots hslots for guests in house like for 3 people s[32] name slots PHP Code: enum hInfo {     id,     Float:hEntrx,    Â...
3,194
Here, it's amazing what the search button can do http://*******/XzGRxC
181
"other server have this" because when they need help, they show their code. Therefore, it gets fixed. If you don't know where to add these, don't script. Examples: pawn Код: #define         ...
189
First off, hash your passwords using Whirlpool. Second, money should be "9", it might not make a difference but it'll help. Third, activate the cache(from false to true) when executing OnPlayerLoad. F...
77
pawn Код: CMD:setname(playerid, params[]){    if(PlayerInfo[playerid][pAdmin] >= 2)    {        new            szQuery[128],            Player,            NewPlayerNam...
117
It should be a string, not an enumerator. It should be '%s' (including the ' ' )
209
I edited my above post for an alternate way. However, you TogglePlayerSpectating when they connect. And when they enter the password correct, set their position then take them off spectate and then sp...
280
TogglePlayerSpectating. EDIT: What you could do is if(!response) return Kick(playerid); I do that and when they press the buttons, it kicks them.
280
Quote: Originally Posted by Bashur Fix your resolution in-game or, try to fix your resolution when your playing a game while tabbing I've tried that. My resolution isn't on most games(t...
93
If you have an Acer motherboard, you'll know that when you start a game you get a box that pops up asking you what resolution you want to play at. Lately, mine hasn't been popping up and it's really a...
93
you mean the score when you press TAB? Make sure you use: SetPlayerScore(playerid, PlayerInfo[playerid][pScore] += score); Something like that.
166