kann es dir bearbeiten hast du skype?...
Beiträge von LikesToreno
-
-
fürs erste gut 8/10
-
habe Strickenkid (include)(Script) LoH edit 2.2.6
und plugin strickenkid .. denke ich mal ..
habe G Stylez / BlueG versucht dannw war mysql_querry nicht deklariert/definiert
-
[02:24:47] Loaded 4 plugins.
[02:24:47]
[02:24:47] Filterscripts
[02:24:47] ---------------
[02:24:47] Loaded 0 filterscripts.[02:24:47] [debug] Run time error 19: "File or function is not found"
[02:24:47] [debug] The following natives are not registered:
[02:24:47] [debug] mysql_query
[02:24:47] [debug] mysql_fetch_row
[02:24:47] [debug] mysql_initwar in der server_log was ist falsch danke mfg
-
DANKE !! seehr nice
-
7/10 für deine erste map
nice ..
aber du kannst das besser machen
//im samp com forum bekommt man für sowas eh schon 6/10 - 8/10 mfg ....
-
Ich habe es für dich mal rot markiert und unterstrichen
man kann Sony Vegas Pro 12 Downloaden ?
http://www.chip.de/downloads/Sony-Vegas-Pro_38353619.html
und hol dir danach sony vegas pro 12 patcher xD
Gute Nacht -.- müde
-
Sony Vegas pro 12
mfg
-
man kann aber die roots schützen o,o
-
bei link11.de bekommt man guten ddos schutz
-
Naja wenigsten ist der Pokal in Germany
ach ne xD -
die abstimmung sagt alles
-
ja leider hat bayern gewonnen
//
@Valexy:
Skype hust..
-
Hier strickenkid inc
SQL
Alles anzeigen/** * SA:MP MySQL v2.1 Functions * (c) Copyright 2011, StrickenKid * **/ #if defined __mysql_included #endinput #endif #define __mysql_included #pragma library mysql // plugin error id's #define P_ERROR_NONE 0 #define P_ERROR_INCPARAMCNT 1 #define P_ERROR_INCVALUE 2 #define P_ERROR_MAXCONN 3 #define P_ERROR_DBNOCONN 4 #define P_ERROR_NORES 5 #define P_ERROR_RES 6 #define P_ERROR_NOFIELD 7 #define P_ERROR_NOFIELDDATA 8 #define P_ERROR_NOROWDATA 9 #define P_ERROR_CANTALLOC 10 #define P_ERROR_NOCALLBACK 11 #define P_ERROR_NOQUERY 12 // mysql headers defines #define REFRESH_GRANT 1 #define REFRESH_LOG 2 #define REFRESH_TABLES 4 #define REFRESH_HOSTS 8 #define REFRESH_STATUS 16 #define REFRESH_THREADS 32 #define REFRESH_SLAVE 64 #define REFRESH_MASTER 128 // mysql error id's #define CR_ERROR_FIRST 2000 #define CR_UNKNOWN_ERROR 2000 #define CR_SOCKET_CREATE_ERROR 2001 #define CR_CONNECTION_ERROR 2002 #define CR_CONN_HOST_ERROR 2003 #define CR_IPSOCK_ERROR 2004 #define CR_UNKNOWN_HOST 2005 #define CR_SERVER_GONE_ERROR 2006 #define CR_VERSION_ERROR 2007 #define CR_OUT_OF_MEMORY 2008 #define CR_WRONG_HOST_INFO 2009 #define CR_LOCALHOST_CONNECTION 2010 #define CR_TCP_CONNECTION 2011 #define CR_SERVER_HANDSHAKE_ERR 2012 #define CR_SERVER_LOST 2013 #define CR_COMMANDS_OUT_OF_SYNC 2014 #define CR_NAMEDPIPE_CONNECTION 2015 #define CR_NAMEDPIPEWAIT_ERROR 2016 #define CR_NAMEDPIPEOPEN_ERROR 2017 #define CR_NAMEDPIPESETSTATE_ERROR 2018 #define CR_CANT_READ_CHARSET 2019 #define CR_NET_PACKET_TOO_LARGE 2020 #define CR_EMBEDDED_CONNECTION 2021 #define CR_PROBE_SLAVE_STATUS 2022 #define CR_PROBE_SLAVE_HOSTS 2023 #define CR_PROBE_SLAVE_CONNECT 2024 #define CR_PROBE_MASTER_CONNECT 2025 #define CR_SSL_CONNECTION_ERROR 2026 #define CR_MALFORMED_PACKET 2027 #define CR_WRONG_LICENSE 2028 #define CR_NULL_POINTER 2029 #define CR_NO_PREPARE_STMT 2030 #define CR_PARAMS_NOT_BOUND 2031 #define CR_DATA_TRUNCATED 2032 #define CR_NO_PARAMETERS_EXISTS 2033 #define CR_INVALID_PARAMETER_NO 2034 #define CR_INVALID_BUFFER_USE 2035 #define CR_UNSUPPORTED_PARAM_TYPE 2036 #define CR_SHARED_MEMORY_CONNECTION 2037 #define CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR 2038 #define CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR 2039 #define CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR 2040 #define CR_SHARED_MEMORY_CONNECT_MAP_ERROR 2041 #define CR_SHARED_MEMORY_FILE_MAP_ERROR 2042 #define CR_SHARED_MEMORY_MAP_ERROR 2043 #define CR_SHARED_MEMORY_EVENT_ERROR 2044 #define CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR 2045 #define CR_SHARED_MEMORY_CONNECT_SET_ERROR 2046 #define CR_CONN_UNKNOW_PROTOCOL 2047 #define CR_INVALID_CONN_HANDLE 2048 #define CR_SECURE_AUTH 2049 #define CR_FETCH_CANCELED 2050 #define CR_NO_DATA 2051 #define CR_NO_STMT_METADATA 2052 #define CR_NO_RESULT_SET 2053 #define CR_NOT_IMPLEMENTED 2054 #define CR_SERVER_LOST_EXTENDED 2055 #define CR_STMT_CLOSED 2056 #define CR_NEW_STMT_METADATA 2057 #define CR_ERROR_LAST 2057 // logging types #define INVALID_MYSQL_ID (-1) #define LOG_OFF (0) #define LOG_ALL (1) #define LOG_ONLY_ERRORS (2) // function defines #define mysql_reload(%1) mysql_refresh(REFRESH_GRANT, %1) // plugin callbacks forward OnMysqlQueryArray(resultid, extravars[], MySQL:handle); forward OnMysqlQuery(resultid, spareid, MySQL:handle); forward OnMysqlError(error[], errorid, MySQL:handle); // plugin natives native MySQL:mysql_init(logtype = LOG_ONLY_ERRORS, printerrors = 1); native mysql_connect(const host[], const user[], const pass[], const db[], MySQL:handle = (MySQL:0), auto_reconnect = 0); native mysql_close(MySQL:handle = (MySQL:0)); native mysql_refresh(options, MySQL:handle = (MySQL:0)); native mysql_select_db(const db[], MySQL:handle = (MySQL:0)); native mysql_query(const query[], resultid = (-1), spareid = (0), MySQL:handle = (MySQL:0)); native mysql_query_array(const query[], resultid = (-1), {Float,_}:extravars[], MySQL:handle = (MySQL:0)); native mysql_store_result(MySQL:handle = (MySQL:0)); native mysql_free_result(MySQL:handle = (MySQL:0)); native mysql_result_stored(MySQL:handle = (MySQL:0)); native mysql_fetch_field(const fieldname[], dest[], MySQL:handle = (MySQL:0)); native mysql_fetch_field_num(fieldnum, dest[], MySQL:handle = (MySQL:0)); native mysql_fetch_row(dest[], const splitter[] = "|", MySQL:handle = (MySQL:0)); native mysql_fetch_row_data(MySQL:handle = (MySQL:0)); native mysql_real_escape_string(const string[], dest[], MySQL:handle = (MySQL:0)); native mysql_num_rows(MySQL:handle = (MySQL:0)); native mysql_num_fields(MySQL:handle = (MySQL:0)); native mysql_affected_rows(MySQL:handle = (MySQL:0)); native mysql_insert_id(MySQL:handle = (MySQL:0)); native mysql_ping(MySQL:handle = (MySQL:0)); native mysql_error(dest[], MySQL:handle = (MySQL:0)); native mysql_errno(MySQL:handle = (MySQL:0)); native mysql_warning_count(MySQL:handle = (MySQL:0)); native mysql_info(dest[], MySQL:handle = (MySQL:0)); native mysql_stat(dest[], MySQL:handle = (MySQL:0)); native mysql_get_server_info(dest[], MySQL:handle = (MySQL:0)); native mysql_get_host_info(dest[], MySQL:handle = (MySQL:0)); native mysql_data_seek(rownum, MySQL:handle = (MySQL:0)); native mysql_set_character_set(const csname[], MySQL:handle = (MySQL:0)); native mysql_get_character_set(csname[], MySQL:handle = (MySQL:0)); native mysql_fetch_int(MySQL:handle = (MySQL:0)); native Float:mysql_fetch_float(MySQL:handle = (MySQL:0)); native mysql_fetch_string(dest[], MySQL:handle = (MySQL:0)); #if !defined split // split function - thanks to Blacklite stock split(const strsrc[], strdest[][], delimiter = '|') { new i, li, aNum, len, srclen = strlen(strsrc); while(i <= srclen) { if (strsrc[i] == delimiter || i == srclen) { len = strmid(strdest[aNum], strsrc, li, i, 128); strdest[aNum][len] = 0; li = i + 1; aNum++; } i++; } } #endif
was is da falsch O:
-
-
Was habe ich da falsch ? gemacht ... und wie kann man es beheben??
einer wird wohl wissen warumDoerfler meinte irgendwas mit printen aber keine ahnung was und wohin damit mfg...
----------
Loaded log file: "server_log.txt".
----------SA-MP Dedicated Server
----------------------
v0.3x, (C)2005-2013 SA-MP Team[21:53:47] filterscripts = "" (string)
[21:53:47]
[21:53:47] Server Plugins
[21:53:47] --------------
[21:53:47] Loading plugin: streamer
[21:53:47]*** Streamer Plugin v2.6.1 by Incognito loaded ***
[21:53:47] Loaded.
[21:53:47] Loading plugin: mysql
[21:53:47] SA:MP MySQL Plugin v2.1.1 Loaded.
[21:53:47] Loaded.
[21:53:47] Loading plugin: sscanf
[21:53:47] [MySQL] Thread running. Threadsafe: Yes.
[21:53:47][21:53:47] ===============================
[21:53:47] sscanf plugin loaded.
[21:53:47] Version: 2.8.1
[21:53:47] (c) 2012 Alex "Y_Less" Cole
[21:53:47] ===============================
[21:53:47] Loaded.
[21:53:47] Loading plugin: crashdetect
[21:53:47] crashdetect v4.5.1 is OK.
[21:53:47] Loaded.
[21:53:47] Loaded 4 plugins.[21:53:47]
[21:53:47] Filterscripts
[21:53:47] ---------------
[21:53:47] Loaded 0 filterscripts.[21:53:47] BITTE LADE DANKE!!!!
[21:53:47] [MySQL] Connected (0) to 'samp'@'localhost via TCP/IP'.
[21:53:47] [MySQL] Server Version 5.5.16-log.
[21:53:47] MySQL-Verbindung wurde erfolgreich hergestellt
[21:53:47] Wetter ID: 2
[21:53:47] [debug] Run time error 6: "Invalid instruction"
[21:53:47] [debug] Unknown opcode 0x232c at address 0x00001A54
[21:53:47] [debug] Backtrace (most recent call first):
[21:53:47] [debug] #0 00001a54 in ?? () from D.S.Z224.amx
[21:53:47] [debug] #1 000a1418 in ?? () from D.S.Z224.amx
[21:53:47] [debug] #2 000023d4 in Itter_OnGameModeInit () from D.S.Z224.amx
[21:53:47] [debug] #3 ???????? in native CallLocalFunction () from samp-server.exe
[21:53:47] [debug] #4 00000824 in OnGameModeInit () from D.S.Z224.amx
[21:53:47] _______________________________________
[21:53:47] Das Script wurde Vollständig geladen!
[21:53:47] editet by [D.S.Z]M4rciii
[21:53:47] _______________________________________ -
----------
Loaded log file: "server_log.txt".
----------SA-MP Dedicated Server
----------------------
v0.3x, (C)2005-2013 SA-MP Team[18:04:46] filterscripts = "" (string)
[18:04:46]
[18:04:46] Server Plugins
[18:04:46] --------------
[18:04:46] Loading plugin: mysql
[18:04:46] SA:MP MySQL Plugin v2.1.1 Loaded.
[18:04:46] Loaded.
[18:04:46] Loading plugin: streamer
[18:04:46] [MySQL] Thread running. Threadsafe: Yes.
[18:04:46]*** Streamer Plugin v2.6.1 by Incognito loaded ***
[18:04:46] Loaded.
[18:04:46] Loading plugin: sscanf
[18:04:46][18:04:46] ===============================
[18:04:46] sscanf plugin loaded.
[18:04:46] Version: 2.8.1
[18:04:46] (c) 2012 Alex "Y_Less" Cole
[18:04:46] ===============================
[18:04:46] Loaded.
[18:04:46] Loading plugin: crashdetect
[18:04:46] crashdetect v4.5.1 is OK.
[18:04:46] Loaded.
[18:04:46] Loaded 4 plugins.[18:04:46]
[18:04:46] Ban list
[18:04:46] --------
[18:04:46] Loaded: samp.ban
[18:04:46]
[18:04:46]
[18:04:46] Filterscripts
[18:04:46] ---------------
[18:04:46] Loaded 0 filterscripts.[18:04:46] [MySQL] Connected (0) to 'samp'@'localhost via TCP/IP'.
[18:04:46] [MySQL] Server Version 5.5.16-log.
[18:04:46] MySQL-Verbindung wurde erfolgreich hergestellt
[18:04:46] Wetter ID: 3
[18:04:46] [debug] Run time error 6: "Invalid instruction"
[18:04:46] [debug] Unknown opcode 0x232c at address 0x00001A54
[18:04:46] [debug] Backtrace (most recent call first):
[18:04:46] [debug] #0 00001a54 in ?? () from D.S.Z224.amx
[18:04:46] [debug] #1 000a13f4 in ?? () from D.S.Z224.amx
[18:04:46] [debug] #2 000023d4 in Itter_OnGameModeInit () from D.S.Z224.amx
[18:04:46] [debug] #3 ???????? in native CallLocalFunction () from samp-server.exe
[18:04:46] [debug] #4 00000824 in OnGameModeInit () from D.S.Z224.amx
[18:04:46] _______________________________________
[18:04:46] Das Script wurde Vollständig geladen!
[18:04:46] editet by [D.S.Z]M4rciii
[18:04:46] _______________________________________
[18:04:46]
[18:04:46] Number of vehicle models: 0
[18:05:53] [debug] Run time error 7: "Stack underflow"
[18:05:53] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:05:53] [debug] Backtrace (most recent call first):
[18:05:53] [debug] #0 00000008 in Plantation () from D.S.Z224.amx
[18:06:59] [debug] Run time error 7: "Stack underflow"
[18:06:59] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:06:59] [debug] Backtrace (most recent call first):
[18:06:59] [debug] #0 00000008 in Plantation () from D.S.Z224.amx
[18:08:06] [debug] Run time error 7: "Stack underflow"
[18:08:06] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:08:06] [debug] Backtrace (most recent call first):
[18:08:06] [debug] #0 00000008 in Plantation () from D.S.Z224.amx
[18:09:12] [debug] Run time error 7: "Stack underflow"
[18:09:12] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:09:12] [debug] Backtrace (most recent call first):
[18:09:12] [debug] #0 00000008 in Plantation () from D.S.Z224.amx
[18:10:19] [debug] Run time error 7: "Stack underflow"
[18:10:19] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:10:19] [debug] Backtrace (most recent call first):
[18:10:19] [debug] #0 00000008 in Plantation () from D.S.Z224.amx
[18:11:25] [debug] Run time error 7: "Stack underflow"
[18:11:25] [debug] Stack index (STK) is 0x98B384, stack top (STP) is 0x98B380
[18:11:25] [debug] Backtrace (most recent call first):
[18:11:25] [debug] #0 00000008 in Plantation () from D.S.Z224.amxBitte helfen danke..
-
Also ich habe streamer + mysql + sscanf upgedatet danach kommt nurnoch dieser kleine error
----------
Loaded log file: "server_log.txt".
----------SA-MP Dedicated Server
----------------------
v0.3x, (C)2005-2013 SA-MP Team[18:04:46] filterscripts = "" (string)
[18:04:46]
[18:04:46] Server Plugins
[18:04:46] --------------
[18:04:46] Loading plugin: mysql
[18:04:46] SA:MP MySQL Plugin v2.1.1 Loaded.
[18:04:46] Loaded.
[18:04:46] Loading plugin: streamer
[18:04:46] [MySQL] Thread running. Threadsafe: Yes.
[18:04:46]*** Streamer Plugin v2.6.1 by Incognito loaded ***
[18:04:46] Loaded.
[18:04:46] Loading plugin: sscanf
[18:04:46][18:04:46] ===============================
[18:04:46] sscanf plugin loaded.
[18:04:46] Version: 2.8.1
[18:04:46] (c) 2012 Alex "Y_Less" Cole
[18:04:46] ===============================
[18:04:46] Loaded.
[18:04:46] Loading plugin: crashdetect
[18:04:46] crashdetect v4.5.1 is OK.
[18:04:46] Loaded.
[18:04:46] Loaded 4 plugins.[18:04:46]
[18:04:46] Ban list
[18:04:46] --------
[18:04:46] Loaded: samp.ban
[18:04:46]
[18:04:46]
[18:04:46] Filterscripts
[18:04:46] ---------------
[18:04:46] Loaded 0 filterscripts.[18:04:46] [MySQL] Connected (0) to 'samp'@'localhost via TCP/IP'.
[18:04:46] [MySQL] Server Version 5.5.16-log.
[18:04:46] MySQL-Verbindung wurde erfolgreich hergestellt
[18:04:46] Wetter ID: 3
[18:04:46] [debug] Run time error 6: "Invalid instruction"
[18:04:46] [debug] Unknown opcode 0x232c at address 0x00001A54
[18:04:46] [debug] Backtrace (most recent call first):
[18:04:46] [debug] #0 00001a54 in ?? () from D.S.Z224.amx
[18:04:46] [debug] #1 000a13f4 in ?? () from D.S.Z224.amx
[18:04:46] [debug] #2 000023d4 in Itter_OnGameModeInit () from D.S.Z224.amx
[18:04:46] [debug] #3 ???????? in native CallLocalFunction () from samp-server.exe
[18:04:46] [debug] #4 00000824 in OnGameModeInit () from D.S.Z224.amx
[18:04:46] _______________________________________
[18:04:46] Das Script wurde Vollständig geladen!
[18:04:46] editet by [D.S.Z]M4rciii
[18:04:46] _______________________________________
[18:04:46]
[18:04:46] Number of vehicle models: 0 -
-
bin gerade dabei die sql datenbank zu erstellen scriptfiles hab ich ale erstellt hast du zufällig die db?
Hier nochmal die erstellte db + log
Loaded log file: "server_log.txt".
----------SA-MP Dedicated Server
----------------------
v0.3x, (C)2005-2013 SA-MP Team[17:20:20] filterscripts = "" (string)
[17:20:20]
[17:20:20] Server Plugins
[17:20:20] --------------
[17:20:20] Loading plugin: mysql
[17:20:20] SA:MP MySQL Plugin v2.1.1 Loaded.
[17:20:20] Loaded.
[17:20:20] Loading plugin: streamer
[17:20:20] [MySQL] Thread running. Threadsafe: Yes.
[17:20:20]*** Streamer Plugin v2.6.1 by Incognito loaded ***
[17:20:20] Loaded.
[17:20:20] Loading plugin: sscanf
[17:20:20][17:20:20] ===============================
[17:20:20] sscanf plugin loaded.
[17:20:20] Version: 2.8.1
[17:20:20] (c) 2012 Alex "Y_Less" Cole
[17:20:20] ===============================
[17:20:20] Loaded.
[17:20:20] Loading plugin: crashdetect
[17:20:20] crashdetect v4.5.1 is OK.
[17:20:20] Loaded.
[17:20:20] Loaded 4 plugins.[17:20:20]
[17:20:20] Ban list
[17:20:20] --------
[17:20:20] Loaded: samp.ban
[17:20:20]
[17:20:20]
[17:20:20] Filterscripts
[17:20:20] ---------------
[17:20:20] Loaded 0 filterscripts.[17:20:20] *** Streamer Plugin: Include file version (0) does not match plugin version (0x26104) (script needs to be recompiled with the latest include file)
[17:20:20] *** Streamer Plugin: Obsolete or invalid native found (script needs to be recompiled with the latest include file)
[17:20:20] OnGameo
[17:20:20] [MySQL] Connected (0) to 'samp'@'localhost via TCP/IP'.
[17:20:20] [MySQL] Server Version 5.5.16-log.
[17:20:20] MySQL-Verbindung wurde erfolgreich hergestellt
[17:20:20] Wetter ID: 9
[17:20:20] [debug] Server crashed while executing D.S.Z224.amx
[17:20:20] [debug] Backtrace (most recent call first):
[17:20:20] [debug] #0 ???????? in native mysql_fetch_field () from mysql.DLL
[17:20:20] [debug] #1 0000ca40 in ?? () from D.S.Z224.amx
[17:20:20] [debug] #2 000a0538 in ?? () from D.S.Z224.amx
[17:20:20] [debug] #3 000a21ec in SSCANF_OnGameModeInit () from D.S.Z224.amx
[17:20:20] [debug] #4 ???????? in native CallLocalFunction () from samp-server.exe
[17:20:20] [debug] #5 000031ec in Streamer_OnGameModeInit () from D.S.Z224.amx
[17:20:20] [debug] #6 ???????? in native CallLocalFunction () from samp-server.exe
[17:20:20] [debug] #7 00001f6c in Itter_OnGameModeInit () from D.S.Z224.amx
[17:20:20] [debug] #8 ???????? in native CallLocalFunction () from samp-server.exe
[17:20:20] [debug] #9 00000824 in OnGameModeInit () from D.S.Z224.amxgeladene db