Search Results
You might wanna make that transparent. I.E. delete the layer called "Background" and save it as a .PNG file. Then the white wont be there.
149
Varies on what you want to do. With small jobs SQLite is far more efficient and speedy. With large systems MySQL is best to use. Both are for different uses and can't really be compared.
112
Horrible examples. Why don't use use zcmd? Much Easier
80
This will work: pawn Код: new Float:X,Float:Y,Float:Z;GetPlayerPos(playerid,X,Y,Z);PlayerInfo[playerid][posx] = X;PlayerInfo[playerid][posy] = Y;PlayerInfo[playerid][posz] = Z;dini_FloatSet(file,...
93
Theres alot of ways to get it working. By default they wont work. If you just want someone to drive it use PutPlayerInVehicle. If you actually want people to be able to enter it. Then you'll have to m...
86
You most likely can't de-code it. If your trying to check passwords. Hash what the person typed in and them compare them.
206
pawn Код: // somewhere ontop of your script, under the includes.#define MyHOST "ip" // Server IP#define MyUSER "root" // change it to a user account for mysql#define MyPASS "" // Password#define M...
149
pawn Код: if (strcmp(cmd, "/admins", true) == 0){    if(IsPlayerConnected(playerid))    {        SendClientMessage(playerid, COLOR_LIGHTGREEN, "** Administrators **");        for(new i...
94
You need to create a global var called "Faction Count" or something. When you load the facions FactionCount++. And have the database AI. Then I guess: pawn Код: CMD:createfaction(playerid, params[...
84
Theres alot of easy ways to do this. But if you need someone to tell you how to do it. You mean that you want them to script it for you. If you don't know how to do it, you should learn to script a li...
53
Use: pawn Код: mysql_fetch_field_row(result,"Feild"); if(mysql_warning_count()) {     //Error (Probobly dosent exist)}
96,259
Strange, Tech support on ServerFFS will just most likely tell you nothing. So... Try re-uploading the plugin and checking that you have a connection to the database.
101
Appart from the fact that your variable is empty. Post your MySQL error log.
84
Quote: Originally Posted by Snowman12 ifyou on windows take awat .co and get the dll files ServerFFS runs on Debian so the .so is fine. You sure the .so "plugins" folder?
101
The string is 64 cells while you tell it to store something with 128 cells. Change pip to 16
106
Take out the "forward split(const strsrc[], strdest[][], delimiter);" too.
136
Why would you want to turn it into strcmp? Why not learn zcmd and change your scripts commands into zcmd. If you're asking here how to change commands into strcmp then I it feels like you don't know s...
236
Check your MySQL Log for errors or just post it here and as far as I know that script uses an outdated plugin too.
203
If the reason is blank then your code is wrong. Why would "Reason" not be a string?. And why don't you use sscanf? pawn Код: dcmd_report(playerid, params[]){    new giveplayer, reason[24], stri...
199
pawn Код: dcmd_report(playerid, params[]){    new tmp[256];    new tmp2[256];    new Index;    tmp = strtok(params, Index);    tmp2 = strtok(params, Index);    new id = strval(tmp);  ...
199