Search Results
Код: *** glibc detected *** ./freedomserver: free(): invalid pointer: 0xb4a00040 *** ======= Backtrace: ========= /lib/libc.so.6(+0x70e31)[0xb7494e31] plugins/mysqlold.so(ProcessTick+0x331)[0xb713...
74
download the script, ctrl+f the variables which relate to the Dealership System and copy it to your own GM and in the mean time change the variables because they could be different.
54
just remove the playerid and then ctrl+f weedspot1[MAX_PLAYERS], remove the "[MAX_PLAYERS]" and then when you are using the weespot1 variable simply just use weespot1 = 1; or weespot1 = 0; and/or pa...
90
ctrl+f and look for "BusinessInfo" if you cant find an enum with the name BusinessInfo then that means this error will obv come
164
change stock to public and use a forward: pawn Код: forward EndWeedSpot1Time(playerid);public EndWeedSpot1Time(playerid){     weedspot1[playerid] = 0;     SendClientMessage(playerid, COLOR_L...
90
um there are many ways, one could be by doing the following: ex: pawn Код: stock GetName(playerid){    new pName[MAX_PLAYER_NAME];    GetPlayerName(playerid, pName, MAX_PLAYER_NAME);    r...
226
https://sampforum.blast.hk/showthread.php?tid=151452
125
whats the point in adding "DESC" when theres only "LIMIT 1" 1 result to show....
65
The command based server restart sometimes screws up the server, so it is better to restart by closing the application and starting it back again.
100
in your sammo command the reason why you may be getting "Fist" as the weapon given could be because of this stock: GetWeaponNameByID Please show this.
98
With CreateObject the maximum amount of objects you can create are around 1200. With CreateDynamicObject you can create manyy more. Plus you have the feature of setting drawdistance and/or changing ...
114
hm, what you did wrong there is you put the Sendclientmessagetoall at the end of the dialog case. Put that line and the color you wish to choose in each and every case of string you format. I hope y...
68
is this under if(killerid != INVALID_PLAYER_ID)? cause if it is then it wont get called cause the player hasnt suicided but killed. You must put pawn Код: if(team[playerid] == TEAM_HUMAN)   ...
131
Quote: Originally Posted by ****** This is what sscanf is for. pawn Код: CMD:report(playerid, params[]){    if(PlayerInfo[playerid][pAdmin] >= 2 && PlayerInfo[playerid]...
93
ShowPlayerDialog should be after strcat and before mysql_free_result.
104
Quote: Originally Posted by Trooja Managed to fix it.. Updated Mysql to R6: Server plugin (VS9) ( https://sampforum.blast.hk/showthread.php?tid=56564 ). In script just needed to delete "...
1,419
pawn Код: forward IsPlayerInArea(playerid, BX,BY,BZ,BA);public IsPlayerInArea(playerid, BX,BY,BZ,BA){    new Float:X, Float:Y, Float:Z;    GetPlayerPos(playerID, X, Y, Z);    if(X >= BX &...
108