Search Results
Quote: Originally Posted by StuartD Go ask Tylor, the all great and powerful. It has all been fixed now! Thank's for telling me on snapchat bro, couldn't have done it without you!
182
enable mysql debugging and post the outcome here.
174
https://sampforum.blast.hk/showthread.php?tid=347605
156
not sure whether people read or not. fatal error 100: cannot read from file: "mysql" - you're missing mysql.inc in your includes foldder.
440
pawn Код: new CrewList[MAX_PLAYERS][MAX_GANGS];CMD:crews(playerid, params[]){    new query[300], userstring[300], n;    new crewname[300], crewbalance[300];    format(query, sizeof(query), "...
90
pawn Код: new PlayerOriginalName[MAX_PLAYERS][MAX_PLAYER_NAME];public OnPlayerConnect(playerid){    GetPlayerName(playerid, PlayerOriginalName[playerid], MAX_PLAYER_NAME);    return 1;}CMD:dan...
114
pawn Код: CMD:oban(playerid,params[]) {    if (PlayerInfo[playerid][Level] >= 3)     {        new PlayerFile[50],ip[16],szString[250];        if(sscanf(params,"u[50]",PlayerFile)) r...
124
Have you tried using /nametagstatus to toggle this option?
234
An email is a string. You will need to use '%s'. You should also consider escaping the email address (DB_Escape).
101
Do not use VehX, VehY and VehZ when attaching as they are offsets. Just use '0.0' for all of them instead and it should be working fine.
112
pawn Код: #define BLINK_LEFT_LIGHT 0#define BLINK_RIGHT_LIGHT 1new Flasher[MAX_VEHICLES],FlasherState[MAX_VEHICLES];forward public FlasherFunc();public FlasherFunc(){    new panelsx,doorsx,light...
185
Quote: Originally Posted by ****** 10) Code pawn Код: public DoRead(name[], value[]){    INI_String("key", gValue); // Error line.} Problem Код: <path>\errors.pwn(12) : e...
142
Add something like this when the player tries to buy a weapon. pawn Код: if(GodMode[playerid]) return SendClientMessage(playerid,red,"ERROR: You have god mode enabled, you can't buy weapons.");
112
pawn Код: CMD:unban(playerid,params[]){    new name[24],string[128];    if(sscanf(params,"s[24]",name)) return SendClientMessage(playerid,0xFF0000FF,"/unban [player_name]");    format(string...
163
There are a few models you're not subtracting 400 from.
169
Quote: Originally Posted by Lorenc_ There isn't. I tried this on my main server and my local server. Both crash. You might want to try this too. How does one receive it in chunks...? No...
257
Post the GetVehicleSpeed function. Just thought I'd state the obvious that you're not even setting the speedometer string.
122