Ich setz mich mal dran
@Linaks
darf ich deine Grafik nutzen?
Ich setz mich mal dran
@Linaks
darf ich deine Grafik nutzen?
Herzlichen Glückwunsch
Es gibt nicht wirklich gute, kostenlose und schnelle. Es gibt günstige, gute und schnelle
bplaced.de
kilu.de
funpic.de
lima-city.de
Bei Kompilieren kein Problem. Doch beim laden des Servers:
ZitatAlles anzeigen----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3a R7, (C)2005-2010 SA-MP Team
[11:59:50]
[11:59:50] Server Plugins
[11:59:50] --------------
[11:59:50] Loaded 0 plugins.
[11:59:50]
[11:59:50] Filter Scripts
[11:59:50] ---------------
[11:59:50] Loading filter script 'base.amx'...
[11:59:50]
--Base FS loaded.
[11:59:50] Loading filter script 'gl_actions.amx'...
[11:59:50] Loading filter script 'gl_property.amx'...
[11:59:50]
-----------------------------------
[11:59:50] Grand Larceny Property Filterscript
[11:59:50] -----------------------------------
[11:59:50] Loading filter script 'gl_realtime.amx'...
[11:59:50] Loaded 4 filter scripts.
[11:59:50] Reading File: blank
[11:59:50] Reading File: properties/houses.txt
[11:59:50] Reading File: properties/businesses.txt
[11:59:50] Reading File: properties/banks.txt
[11:59:50] Reading File: properties/police.txt
[11:59:50] Script[gamemodes/fusion.amx]: Run time error 19: "File or function is not found"
[11:59:50] Number of vehicle models: 0
wie gesagt hintergrund ist nur als übergang gedacht worden
Hi,
Hab mich gestern NACHT mal für meinen Server hingesetzt und eine Dynamische Server Grafik gebaut. Aber ich stell sie euch gerne zur verfügung. Ausserdem ist die Hintergrundgrafik Austauschbar die Grafik war nur als übergang gedacht. PSD für Photoshop ist dabei!
ZitatKritik und Anregungen erwünscht! (Bitte keine Kritik zum einrücken der Zeilen wie gesagt ist es NACHTS entstanden XD)
API Copyright:
http://forum.sa-mp.com/index.php?topic=129351.0
http://ul.to/l1jvjq
http://rapidshare.com/files/385571903/Stats.zip.html
Neue Version:
http://ul.to/9774zy
Da diese Datei zu gross ist um sie hier rein zu stellen musste ich sie Uploaden.
(Mirrors auf Anfrage)
ZitatAlles anzeigenC:\SA-MP\pawno\include\morphinc.inc(3) : warning 219: local variable "x2" shadows a variable at a preceding level
C:\SA-MP\pawno\include\morphinc.inc(3) : warning 219: local variable "y2" shadows a variable at a preceding level
C:\SA-MP\pawno\include\morphinc.inc(3) : warning 219: local variable "z2" shadows a variable at a preceding level
C:\SA-MP\gamemodes\rock.pwn(1248) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg")
C:\SA-MP\gamemodes\rock.pwn(1578) : error 047: array sizes do not match, or destination array is too small
C:\SA-MP\gamemodes\rock.pwn(4311) : warning 203: symbol is never used: "eis"
C:\SA-MP\gamemodes\rock.pwn(4311) : warning 203: symbol is never used: "pizza"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
und nu :O?
joa erstes problem:
Das steht:
Registriere dich:
________________
Abbrechen Weiter
wenn ich auf weiter klicke nichts.
wenn ich auf abbrechen klicke kommt passwort zu kurz xD
kannst du vielleicht auch die includes posten?
Deutsch? Englisch? Chinesisch? Was ist es den? Oder Multi?
Hab mir das: http://forum.sa-mp.com/index.php?topic=166046.0
und dir benötigten Teile runtergeladen. Kompilieren kein Error oder Warning. Wenn es läd steht nur das das Filterscript geladen wurde nicht aber das was eigentlich kommen muss:
(Ausschnitt):
public OnFilterScriptInit()
{
print("\n>> Orange Stats System\n> Loading...\n> Connecting to DataBase...\n");
mysql_debug(0); // MySQL Debug
print(Version);
new OSSDBConF, query[256];
OSSDBConF = ini_openFile ("OSSDBConF.cfg");
if(OSSDBConF == INI_OK)
{
ini_getString(OSSDBConF,"SQL Host", SQL_HOST);
ini_getString(OSSDBConF,"SQL Data Base", SQL_DB);
ini_getString(OSSDBConF,"SQL User", SQL_USER);
ini_getString(OSSDBConF,"SQL Password", SQL_PASS);
ini_closeFile(OSSDBConF);
printf (">> OSS Data Base Config:\n> SQL Host: %s\n> SQL Data Base: %s\n> SQL User: %s\n> SQL Password: %s", SQL_HOST, SQL_DB, SQL_USER, SQL_PASS);
}
else
{
OSSDBConF = ini_createFile("OSSDBConF.cfg");
if (OSSDBConF == INI_OK)
{
print("[ERROR]: Config File of Data Base is not found.\n> Create new Config with Default Settings...");
ini_setString(OSSDBConF,"SQL Host", "localhost");
ini_setString(OSSDBConF,"SQL Data Base", "Orange_DB");
ini_setString(OSSDBConF,"SQL User", "Orange");
ini_setString(OSSDBConF,"SQL Password", "D1s4pp34R");
ini_getString(OSSDBConF,"SQL Host", SQL_HOST);
ini_getString(OSSDBConF,"SQL Data Base", SQL_DB);
ini_getString(OSSDBConF,"SQL User", SQL_USER);
ini_getString(OSSDBConF,"SQL Password", SQL_PASS);
ini_closeFile(OSSDBConF);
printf (">> OSS Data Base Config:\n> SQL Host: %s\n> SQL Data Base: %s\n> SQL User: %s\n> SQL Password: %s", SQL_HOST, SQL_DB, SQL_USER, SQL_PASS);
}
else print("[ERROR]: Can't create file.");
}
new Connection = mysql_connect(SQL_HOST, SQL_USER, SQL_DB, SQL_PASS);
if(Connection)
{
new dest[200];
mysql_stat(dest);
printf(dest);
print("\n>> OSS Successfully Connected To MySQL\n");
EDIT:
/**
*
*MySQL Native Functions
*More information about the function usage at mysql.com
*
**/
#if defined mysql_included
#endinput
#endif
#define mysql_included
//Definitions
#define mysql_fetch_row(%1) mysql_fetch_row_format(%1,"|")
#define mysql_get_field(%1,%2) mysql_fetch_field_row(%2,%1)
//Native functions
native mysql_affected_rows(connectionHandle = 1);
native mysql_close(connectionHandle = 1);
native mysql_connect(const host[],const user[],const database[],const password[]);
native mysql_debug(enable = 1);
native mysql_errno(connectionHandle = 1);
native mysql_fetch_int(connectionHandle = 1);
native mysql_fetch_field(number,dest[],connectionHandle = 1);
native mysql_fetch_field_row(string[],const fieldname[],connectionHandle = 1);
native mysql_fetch_float(&Float:result,connectionHandle = 1);
native mysql_fetch_row_format(string[],const delimiter[] = "|",connectionHandle = 1);
native mysql_field_count(connectionHandle = 1);
native mysql_free_result(connectionHandle = 1);
native mysql_get_charset(destination[],connectionHandle = 1);
native mysql_insert_id(connectionHandle = 1);
native mysql_num_rows(connectionHandle = 1);
native mysql_num_fields(connectionHandle = 1);
native mysql_ping(connectionHandle = 1);
native mysql_query(query[],resultid = (-1),extraid = (-1),connectionHandle = 1);
native mysql_real_escape_string(const source[],destination[],connectionHandle = 1);
native mysql_reconnect(connectionHandle = 1);
native mysql_reload(connectionHandle = 1) = mysql_reconnect;
native mysql_retrieve_row(connectionHandle = 1);
native mysql_set_charset(charset[],connectionHandle = 1);
native mysql_stat(const destination[],connectionHandle = 1);
native mysql_store_result(connectionHandle = 1);
native mysql_warning_count(connectionHandle = 1);
//Callback
forward OnQueryFinish(query[], resultid, extraid, connectionHandle);
C:\servertests\pawno\include\mxINI.inc(1) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(6) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(16) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(19) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(26) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(31) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(45) : error 010: invalid function or declaration
C:\servertests\pawno\include\mxINI.inc(67) : error 017: undefined symbol "INI_MAX_OPENED_FILES"
C:\servertests\pawno\include\mxINI.inc(74) : error 008: must be a constant expression; assumed zero
C:\servertests\pawno\include\mxINI.inc(74) : error 009: invalid array size (negative, zero or out of bounds)
C:\servertests\pawno\include\mxINI.inc(123) : error 017: undefined symbol "INI_MAX_FILENAME_SIZE"
C:\servertests\pawno\include\mxINI.inc(124) : error 017: undefined symbol "INI_WRONG_PATH_SIZE"
C:\servertests\pawno\include\mxINI.inc(130) : error 017: undefined symbol "INI_FILE_ALREADY_EXIST"
C:\servertests\pawno\include\mxINI.inc(132) : error 017: undefined symbol "INI_MAX_OPENED_FILES"
C:\servertests\pawno\include\mxINI.inc(138) : error 017: undefined symbol "INI_FILE_ALREADY_EXIST"
C:\servertests\pawno\include\mxINI.inc(147) : error 017: undefined symbol "INI_MAX_FILE_SIZE"
C:\servertests\pawno\include\mxINI.inc(148) : error 017: undefined symbol "INI_TOO_LARGE_FILE"
C:\servertests\pawno\include\mxINI.inc(158) : error 017: undefined symbol "INI_MAX_OPENED_FILES"
C:\servertests\pawno\include\mxINI.inc(173) : error 017: undefined symbol "INI_MAX_FILE_SIZE"
C:\servertests\pawno\include\mxINI.inc(176) : error 017: undefined symbol "INI_DELIMITER"
C:\servertests\pawno\include\mxINI.inc(192) : error 017: undefined symbol "cellbytes"
C:\servertests\pawno\include\mxINI.inc(209) : error 017: undefined symbol "INI_NO_FREE_SLOT"
C:\servertests\pawno\include\mxINI.inc(241) : error 017: undefined symbol "INI_MAX_FILENAME_SIZE"
C:\servertests\pawno\include\mxINI.inc(242) : error 017: undefined symbol "INI_WRONG_PATH_SIZE"
C:\servertests\pawno\include\mxINI.inc(247) : error 017: undefined symbol "INI_FILE_NOT_FOUND"
C:\servertests\pawno\include\mxINI.inc(252) : error 017: undefined symbol "INI_MAX_OPENED_FILES"
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
26 Errors.
Alles anzeigen
Nein hab ich nicht:
#include <a_samp>
#include <a_mysql>
#include <mxINI>
ist das script von hier:
C:\servertests\pawno\include\mxINI.inc(1) : error 010: invalid function or declaration
C:\servertests\filterscripts\OSSEN.pwn(81) : error 017: undefined symbol "mysql_debug"
C:\servertests\filterscripts\OSSEN.pwn(118) : error 017: undefined symbol "mysql_connect"
C:\servertests\filterscripts\OSSEN.pwn(122) : error 017: undefined symbol "mysql_stat"
C:\servertests\filterscripts\OSSEN.pwn(200) : error 017: undefined symbol "mysql_real_escape_string"
C:\servertests\filterscripts\OSSEN.pwn(201) : error 017: undefined symbol "mysql_real_escape_string"
C:\servertests\filterscripts\OSSEN.pwn(203) : error 017: undefined symbol "mysql_query"
C:\servertests\filterscripts\OSSEN.pwn(240) : error 017: undefined symbol "mysql_ping"
C:\servertests\filterscripts\OSSEN.pwn(240) : error 017: undefined symbol "mysql_close"
C:\servertests\filterscripts\OSSEN.pwn(248) : error 017: undefined symbol "mysql_ping"
C:\servertests\filterscripts\OSSEN.pwn(248) : error 017: undefined symbol "mysql_connect"
C:\servertests\filterscripts\OSSEN.pwn(270) : error 017: undefined symbol "mysql_query"
C:\servertests\filterscripts\OSSEN.pwn(272) : error 017: undefined symbol "mysql_store_result"
C:\servertests\filterscripts\OSSEN.pwn(273) : error 017: undefined symbol "mysql_num_rows"
C:\servertests\filterscripts\OSSEN.pwn(291) : error 017: undefined symbol "mysql_free_result"
C:\servertests\filterscripts\OSSEN.pwn(327) : error 017: undefined symbol "mysql_real_escape_string"
C:\servertests\filterscripts\OSSEN.pwn(328) : error 017: undefined symbol "mysql_real_escape_string"
C:\servertests\filterscripts\OSSEN.pwn(331) : error 017: undefined symbol "mysql_query"
C:\servertests\filterscripts\OSSEN.pwn(332) : error 017: undefined symbol "mysql_store_result"
C:\servertests\filterscripts\OSSEN.pwn(334) : error 017: undefined symbol "mysql_fetch_row_format"
C:\servertests\filterscripts\OSSEN.pwn(336) : error 017: undefined symbol "mysql_fetch_field_row"
C:\servertests\filterscripts\OSSEN.pwn(338) : error 017: undefined symbol "mysql_fetch_field_row"
C:\servertests\filterscripts\OSSEN.pwn(340) : error 017: undefined symbol "mysql_fetch_field_row"
C:\servertests\filterscripts\OSSEN.pwn(343) : error 017: undefined symbol "mysql_free_result"
C:\servertests\filterscripts\OSSEN.pwn(396) : error 017: undefined symbol "mysql_real_escape_string"
C:\servertests\filterscripts\OSSEN.pwn(397) : error 017: undefined symbol "mysql_real_escape_string"
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
26 Errors.
was brauch ich da? hab die a_mysql schon drinne.. geht aber nicht.
Oder woher bekomm ich ne neuere version?
Ich habe definitiv die v0.3a R7!!
Beweis: