* Streamer Plugin: Warning: Obsolete or invalid native \"Streamer_RegisterInterface\" found (script might need to be recompiled with the latest include file)[22:19:10] *** Streamer Plugin: Warning: Obsolete or invalid native \"Streamer_AddPlayer\" found (script might need to be recompiled with the latest include file)[22:19:10] *** Streamer Plugin: Warning: Obsolete or invalid native \"Streamer_RemovePlayer\" found (script might need to be recompiled with the latest include file)[22:19:10] *** Streamer Plugin: Warning: Obsolete or invalid native \"Streamer_VerifyPickup\" found (script might need to be recompiled with the latest include file)[22:19:10] *** Streamer Plugin: Warning: Obsolete or invalid native \"Streamer_VerifyCheckpoint\" found (script might need to be recompiled with the latest include file)[22:19:10] *** Streamer Plugin: Warning: Include file version (unknown version) does not match plugin version (0x27401) (script might need to be recompiled with the latest include file)
new text:rtext;forward TextOn(playerid,szoveg[]);public TextOn(playerid, szoveg[]){ rtext = TextDrawCreate(320.0, 240.0, szoveg); <-----!!!TextDrawUseBox(rtext, 1); <---------!!!TextDrawShowForPlayer(playerid, rtext); <------!!!TextdawMegjelenitve[playerid] = 1;SetTimerEx(\"TextOff\", 1500, false, \"i\", playerid);SCM(playerid,COLOR_FAINZOLD,\"Textdraw megjelenítve!\");return 1;}forward TextOff(playerid);public TextOff(playerid){ TextDrawHideForPlayer(playerid, rtext); <----!!! TextdawMegjelenitve[playerid] = 0; return 1;}
dcmd_adcash(playerid,params[]){if(AccInfo[playerid][Level] >= { new Index; new tmp[256]; tmp = strtok(params,Index); new tmp2[256]; tmp2 = strtok(params,Index); if(!strlen(tmp) || !strlen(tmp2) || !IsNumeric(tmp2)) returnSendClientMessage(playerid, red, \"Használat: /setcash [Játékos ID] [Érték]\") &&SendClientMessage(playerid, orange, \"Funkció: Evvel Játékos Pénzt adhatsz!\");new player1 = strval(tmp);new cash = strval(tmp2);new string[128];if(AccInfo[player1][Level] == ServerInfo[MaxAdminLevel] && AccInfo[playerid][Level] != ServerInfo[MaxAdminLevel])return SendClientMessage(playerid,red,\"Hiba: Nem Vagy Elég Magas Szintű Admin!\"); if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID){ SendCommandToAdmins(playerid,\"SetCash\"); { format(string,sizeof(string),\"{FF0000}:{00FF00} \'\'%s\'\' utalt \'\'%s\'\' nevű játékosnak \'%d\'$-t!\",pName(playerid),pName(player1), cash); SendClientMessageToAll(COLOR_PURPLE,string); } SetPlayerMoney(player1); return GivePlayerMoney(player1, cash); }else return ErrorMessages(playerid, 2);}else return ErrorMessages(playerid, 1);}
dcmd(adcash, 6 cmdtext);
D:\\modom\\filterscripts\\KaPlaylist.pwn(14) : error 017: undefined symbol \"mysql_ping\"D:\\modom\\filterscripts\\KaPlaylist.pwn(22) : error 035: argument type mismatch (argument 1)D:\\modom\\filterscripts\\KaPlaylist.pwn(23) : error 017: undefined symbol \"mysql_store_result\"D:\\modom\\filterscripts\\KaPlaylist.pwn(25) : error 017: undefined symbol \"mysql_fetch_row\"D:\\modom\\filterscripts\\KaPlaylist.pwn(30) : error 017: undefined symbol \"mysql_free_result\"D:\\modom\\filterscripts\\KaPlaylist.pwn(38) : error 035: argument type mismatch (argument 1)D:\\modom\\filterscripts\\KaPlaylist.pwn(39) : error 017: undefined symbol \"mysql_store_result\"D:\\modom\\filterscripts\\KaPlaylist.pwn(41) : error 017: undefined symbol \"mysql_fetch_row\"D:\\modom\\filterscripts\\KaPlaylist.pwn(45) : error 017: undefined symbol \"mysql_num_rows\"D:\\modom\\filterscripts\\KaPlaylist.pwn(47) : error 017: undefined symbol \"mysql_free_result\"D:\\modom\\filterscripts\\KaPlaylist.pwn(59) : error 035: argument type mismatch (argument 1)D:\\modom\\filterscripts\\KaPlaylist.pwn(60) : error 017: undefined symbol \"mysql_store_result\"D:\\modom\\filterscripts\\KaPlaylist.pwn(61) : error 017: undefined symbol \"mysql_fetch_row\"D:\\modom\\filterscripts\\KaPlaylist.pwn(63) : error 017: undefined symbol \"mysql_free_result\"Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 14 Errors.
#include a_samp#include zcmd#include a_mysql#include sscanf2#define SQL_HOST \"localhost\"#define SQL_USER \"asd\"#define SQL_PASS \"teszt\"#define SQL_DB \"orangesamp\"public OnFilterScriptInit(){ mysql_connect(SQL_HOST, SQL_USER, SQL_DB, SQL_PASS); if( mysql_ping() == 1 ) print(\"KaPlaylist(MySQL):Csatlakoztatva!\");else print(\"KaPlaylist(MySQL):Nem sikerült_csatlakozni\");return 1;}CMD:playlist(playerid,params[]){new query[1000],music[200];format(query,sizeof(query),\"SELECT `music` FROM `playlist`\");mysql_query(query); mysql_store_result(); query[0] = EOS; while(mysql_fetch_row(music)) { format(query, sizeof(query), \"%s\\n%s\", query, music);}ShowPlayerDialog(playerid, 166, DIALOG_STYLE_LIST, \"{FFFF00}Lejátszási lista by kadaradam\", query, \"Kiválaszt\", \"-Stop-\"); mysql_free_result();return 1;}CMD:searchsong(playerid,params[]){new query[1000],songname[200];if(sscanf(params, \"s[200]\", songname)) return SendClientMessage(playerid, 0xFF0000FF, \"Használat: /searchsong [Kulcsszó zenecímre]\");format(query,sizeof(query),\"SELECT `music` FROM `playlist` WHERE `music` LIKE \'%s%s%s\'\", \"%%\", songname, \"%%\");mysql_query(query); mysql_store_result(); query[0] = EOS; while(mysql_fetch_row(songname)) { format(query, sizeof(query), \"%s\\n%s\", query, songname);}if(mysql_num_rows() == 0) return SendClientMessage(playerid, 0xFF0000FF, \"Nincs találat!\");ShowPlayerDialog(playerid, 166, DIALOG_STYLE_LIST, \"{FFFF00}Lejátszási lista by kadaradam\", query, \"Kiválaszt\", \"-Stop-\"); mysql_free_result();return 1;}public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]){if(dialogid == 166){ if(response) { new play[260],query[140]; format(query,sizeof(query),\"SELECT `url` FROM `playlist` WHERE `music` LIKE \'%s%s%s\'\", \"%%\", inputtext, \"%%\"); mysql_query(query); mysql_store_result(); mysql_fetch_row(play); PlayAudioStreamForPlayer(playerid,play); mysql_free_result(); }else{StopAudioStreamForPlayer(playerid);}}return 1;}
SA-MP Dedicated Server----------------------v0.3z, (C)2005-2014 SA-MP Team[12:48:05] [12:48:05] Server Plugins[12:48:05] --------------[12:48:05] Loading plugin: nativechecker[12:48:05] Loaded.[12:48:05] Loading plugin: sscanf[12:48:05] [12:48:05] ===============================[12:48:05] sscanf plugin loaded. [12:48:05] Version: 2.8.1 [12:48:05] (c) 2012 Alex \"Y_Less\" Cole [12:48:05] ===============================[12:48:05] Loaded.[12:48:05] Loading plugin: MapAndreas[12:48:05] Loaded.[12:48:05] Loaded 3 plugins.[12:48:05] [12:48:05] Filterscripts[12:48:05] ---------------[12:48:05] Loaded 0 filterscripts.[12:48:05] Error: Function not registered: \'SSCANF_Init\'[12:48:05] Error: Function not registered: \'SSCANF_Join\'[12:48:05] Error: Function not registered: \'SSCANF_Leave\'[12:48:05] Error: Function not registered: \'sscanf\'
Hello!Valakinek van ötlete miért van ez? SA-MP Dedicated Server----------------------v0.3z, (C)2005-2014 SA-MP Team[12:48:05] [12:48:05] Server Plugins[12:48:05] --------------[12:48:05] Loading plugin: nativechecker[12:48:05] Loaded.[12:48:05] Loading plugin: sscanf[12:48:05] [12:48:05] ===============================[12:48:05] sscanf plugin loaded. [12:48:05] Version: 2.8.1 [12:48:05] (c) 2012 Alex \"Y_Less\" Cole [12:48:05] ===============================[12:48:05] Loaded.[12:48:05] Loading plugin: MapAndreas[12:48:05] Loaded.[12:48:05] Loaded 3 plugins.[12:48:05] [12:48:05] Filterscripts[12:48:05] ---------------[12:48:05] Loaded 0 filterscripts.[12:48:05] Error: Function not registered: \'SSCANF_Init\'[12:48:05] Error: Function not registered: \'SSCANF_Join\'[12:48:05] Error: Function not registered: \'SSCANF_Leave\'[12:48:05] Error: Function not registered: \'sscanf\' Verzió: sscanf 2.8.1 Mit kellene még megnéznem esetleg?Minden mappában minden fájl a helyén megfelelően.Plugins,pawno include,és sscanf mappa is létrehozva.