Ultiemate WC3 Mod speichert kein XP

Black-Rider007

New Member
Ultimate WC3 Mod speichert kein XP

Hallo,
mein Freund will auf seinem Gameserver der auf meinem rootDS läuft umbedingt Ultiamte WC3 Mod haben (UWC3).
Amxmodx läuft schon. Ich habe also alle hochgeladen, die Amxmodx plugins.ini bearbeitet:
Code:
uwc3.amxx    ;Ulitmate
Danach bin ich in die modules.ini gegangen und habe folgendes bearbeitet:
Code:
mysql
;sqlite
fun
engine
fakemeta
geoip
sockets
regex
nvault
;csdm

Als ich das dann auch erledigt hatte, bin ich in die UWC3_sql.cfg gegangen.
Code:
// SQL configuration file
// File location: $moddir/addons/amxmodx/configs/UWC3/UWC3_sql.cfg

// We recommend using your server IP address instead of its name

UW_sql_host	"localhost"
UW_sql_user	"uwc3"
UW_sql_pass	"********"
UW_sql_db	"uwc3"

Die Datenbank und den User habe ich vorher schon angelegt gehabt.

Und so sieht meine UWC3.cfg aus(nur der obere Teil)
Code:
// Main settings - Fast XP or Long term, etc
mp_savexp 1			// Set 1 to save long term xp
mp_sql 1                        // Set 1 to use AMXX dbi storage, 0 for vault
mp_sql_saveby 1                 // Set 1 to save by STEAMID, 2 to save by player name
mp_sql_saveoncmdonly 1       // Set 1 to save SQL data on player commands only
                                // Not using this may cause additional server lag
mp_xpmultiplier 2.0             // multiplier for xp table (xp needed per level)
mp_weaponxpmodifier 1           // awards xp for various weapons
sv_warcraft3 1                  // set to 0 to disable the plugin

Server restartet. UWC3 läuft. Speichert aber kein XP:-( .

Und das hat mir die Konsole aus gespuckt:
Code:
server03@ve1750143538:~$  ./hlds_run  -game cstrike +maxplayers 12 +map de_dust2 -autoupdate -port 27015
Auto detecting CPU
Using Pentium II Optimised binary.
Auto-restarting the server on crash
Could not locate steam binary:./steam, ignoring.

Console initialized.
scandir failed:/home/server03/./valve/SAVE
scandir failed:/home/server03/./platform/SAVE
Protocol version 47
Exe version 1.1.2.5/Stdio (cstrike)
Exe build: 20:02:49 Oct 24 2006 (3651)
STEAM Auth Server
couldn't exec language.cfg
Server IP address 127.0.0.1:27015

   Metamod version 1.19  Copyright (c) 2001-2006 Will Day <willday@metamod.org>
   Metamod comes with ABSOLUTELY NO WARRANTY; for details type `meta gpl'.
   This is free software, and you are welcome to redistribute it
   under certain conditions; type `meta gpl' for details.


   AMX Mod X version 1.76d Copyright (c) 2004-2006 AMX Mod X Development Team
   AMX Mod X comes with ABSOLUTELY NO WARRANTY; for details type `amxx gpl'.
   This is free software and you are welcome to redistribute it under
   certain conditions; type 'amxx gpl' for details.

scandir failed:/home/server03/./valve/SAVE
scandir failed:/home/server03/./platform/SAVE
[AMXX] Loaded 2 admins from file
Menu item 17 added to Menus Front-End: "AMX Match Deluxe" from plugin "AMX Match Deluxe"
[UWC3] Using database type mysql.

Executing AMX Mod X Configuration File
Scrolling message displaying frequency: 10:00 minutes
couldn't exec listip.cfg
couldn't exec banned.cfg
Adding master server 72.165.61.189:27010
Adding master server 72.165.61.190:27010
Connection to Steam servers successful.
   VAC secure mode is activated.

Nur da sehe ich kein Error.
Kann mir vielleicht jemand mal helfen?
Mit freundlichen Gruß
Black-Rider
 
Last edited by a moderator:
Ups, nein, habe aber auch keine .sql Datei oder so gefunden.
Weiß jemand, wo ich die Tabellen finde?

Edit:
Habe im Ordner cstrike eine vault_to_dbi.pl gefunden.
Die sieht nun wie folgt aus(oberer Teil):
Code:
#! /usr/bin/perl 

use DBI;

# ***************************************************************************
# Program: Conversion script to convert vault files to sql table data
# Author:  K2mia (Andrew Cowan)
# Date:    Sept. 12, 2004
# ***************************************************************************

# Instructions for Use:
# 1. Modify the $configs_dir path for your specific server 
# 2. Modify the $data_dir path for your specific server 
# 3. Locate the UWC3_sql.cfg file that came with your UWC3 zipfile
#    and make sure it is configured for your sql server
# 4. Modify the data_source as required for your server
#    Data sources can be listed with a simple perl script (example below)
#
# use DBI;
# @driver_names = DBI->available_drivers;
# @data_sources = DBI->data_sources($driver_name);
# print @data_sources;


$configs_dir = "/home/server03/cstrike/addons/amxmodx/configs";
$data_dir = "/home/server03/cstrike/addons/amxmodx/data";
$data_source = "DBI:mysql:uwc3";
Habe also Pfads angepasst. 
server03@ve1750143538:~/cstrike$ ./vault_to_dbi.pl

UWC3 Vault to SQL Data Conversion v0.0.1
SQL Config Loaded: [localhost] user=(uwc3) pass=(*) db=(cstrike/addons/amxmodx/data/uwc3.db)
Ensuring SQL tables are created ...
Ensuring SQL tables setup with steamid as primary key ...
 * Table uwc3_xp [OK]
 * Table uwc3_enh [OK]
 * Table uwc3_skills1 [OK]
 * Table uwc3_skills2 [OK]
 * Table uwc3_skills3 [OK]
 * Table uwc3_skills4 [OK]
Reading / Converting Vault Data Now
UWC3 Vault to SQL Data Conversion Completed

Server neugestartet! Doch speicher immer noch keine XP:-(
 
Last edited by a moderator:
Hallo,

soweit ich weiß muss man garnicht MYSQL dafür installieren, musst nur dem Order CHMOD 777 geben.
 
Back
Top