Relax, read the chumpy centos installation.
Its the same, only themes are different.
Printable View
Relax, read the chumpy centos installation.
Its the same, only themes are different.
walkernight88 how do you run the client? What file do you use? It's a. Bat? If you like to download hopedar I appreciate it.
Okey so guys i already done with all but i cant know what ip where can i write in centosany1 pls help me with that. Thanks for answers :)
Internal.txt (from pierr)
[MD5CHECK]
LANGUAGE_SKIP = 1
ALL_FILE_CHECK = 0
[server]
IP=127.0.0.1
PORT=38101
IP_CHAT=127.0.0.1
IP_PORT=38121
CMK=0
Start.bat
@echo off
start CabalMain.exe breaklee
exit
bro where i download a really centos Index of /5.8/isos/i386
this page don't work for me i download that centos and i can't open with vmware or oracle
The run cabalmain.exe, enter the account password, but can not connect to the 38101, can anyone help me?
use this Script to start CabalServer :
rm -f /var/log/cabal/*.log
rm -f /var/log/cabal/*.trc
rm -f /var/log/cabal/*.txt
rm -f /home/cabal/core.*
service DBAgent_01 start
sleep 2
service AuthDBAgent start
sleep 2
service GlobalDBAgent start
sleep 2
service RockAndRollITS start
sleep 2
service GlobalMgrSvr start
sleep 2
service CashDBAgent start
sleep 2
service PCBangDBAgent start
sleep 2
service EventDBAgent start
sleep 2
service PartySvr_01 start
sleep 5
service EventMgrSvr start
sleep 2
service ChatNode_01 start
sleep 2
service AgentShop_01 start
sleep 2
service WorldSvr_01_01 start
sleep 2
service LoginSvr_01 start
sleep 2
save it into startcb.sh set chmod +777 .
[##ERROR##] Initialize(): InitializeGlobals()
Btw: Any news on TDP when they could have there Repack ready for easy install?
rm -f /var/log/cabal/*.log
rm -f /var/log/cabal/*.trc
rm -f /var/log/cabal/*.txt
rm -f /home/cabal/core.*
service DBAgent_01 restart
sleep 2
service AuthDBAgent restart
sleep 2
service GlobalDBAgent restart
sleep 2
service RockAndRollITS restart
sleep 2
service GlobalMgrSvr restart
sleep 2
service CashDBAgent restart
sleep 2
service PCBangDBAgent restart
sleep 2
service EventDBAgent restart
sleep 2
service PartySvr_01 restart
sleep 5
service EventMgrSvr restart
sleep 2
service ChatNode_01 restart
sleep 2
service AgentShop_01 restart
sleep 2
service WorldSvr_01_01 restart
sleep 2
service LoginSvr_01 restart
sleep 2
save it into startcb.sh set chmod +777 . use your brain
I go share with all the script for auto install and config ep8, just wait
Compatible with CentOS 4.x+ ;)
Okey now i will ask again my question cuz i didnt got any answer now hoping for answer!
The question is: What ip can i write and where in centos for i can log in the game!
Btw waiting the answers thanks!
here's a fix for npc cash shop :D
Quote:
ALTER PROC [dbo].[npc_purchaseCashItem]
@usernum INT
, @ItemIdx INT
, @OptionIdx INT
, @Duration INT
, @Quantity INT
, @Cash INT
, @ResultCode INT OUTPUT
, @CashLogNo BIGINT OUTPUT
, @RemainingCash INT OUTPUT
AS
SET XACT_ABORT ON
DECLARE @UserCash INT
DECLARE @NPCItemIdx INT
DECLARE @UserID VARCHAR(30)
SET @CashLogNo = 0
SET @UserCash = 0
SET @RemainingCash = 0
SELECT TOP 1 @UserID = ID
FROM ACCOUNT.dbo.cabal_auth_table
WHERE usernum = @usernum
IF @UserID IS NULL
BEGIN
SET @ResultCode = 0xE9
SET XACT_ABORT OFF
RETURN
END
SELECT @UserCash = CashTotal
FROM CashAccount
WHERE Usernum = @usernum
IF ISNULL(@UserCash, 0) < @Cash
BEGIN
SET @ResultCode = 0xE2
SET @RemainingCash = ISNULL(@UserCash, 0)
SET XACT_ABORT OFF
RETURN
END
SELECT @NPCItemIdx = LinkPrdID
FROM [dbo].[npc_itemdata]
WHERE ItemIdx = @ItemIdx
AND ItemOption = @OptionIdx
AND Duration = @Duration
IF @NPCItemIdx is null
BEGIN
SET @NPCItemIdx = @ItemIdx + @OptionIdx + @Duration
INSERT INTO [dbo].[npc_itemdata]
(ItemIdx
,[Duration]
,[ItemOption]
,LinkPrdID)
VALUES
(@ItemIdx
,@Duration
,@OptionIdx
,@NPCItemIdx)
END
DECLARE @PreCash INT
DECLARE @PreCashBonus INT
DECLARE @NextCash INT
DECLARE @NextCashBonus INT
SELECT @PreCash = Cash
, @PreCashBonus = CashBonus
FROM CashAccount
WHERE Usernum = @usernum
IF (@PreCash + @PreCashBonus) < @Cash
BEGIN
SET @ResultCode = 0xE2
SET @RemainingCash = @PreCash + @PreCashBonus
SET XACT_ABORT OFF
RETURN
END
IF @PreCashBonus < @Cash
BEGIN
SET @NextCashBonus = 0
SET @NextCash = @PreCash - @Cash + @PreCashBonus
END
ELSE
BEGIN
SET @NextCashBonus = @PreCashBonus - @Cash
SET @NextCash = @PreCash
END
BEGIN TRAN NPC_Purchase_Transaction
UPDATE CashAccount
SET Cash = @NextCash
, CashBonus = @NextCashBonus
WHERE Usernum = @usernum
INSERT INTO [dbo].[CashLog]
([UserNum]
, ID
,[LogType]
,[LogSubType]
,[CashAfter]
,[CashBonusAfter]
,[CashPre]
,[CashBonusPre]
,[ChangeCash]
,[ChangeCashBonus]
,[ItemCD]
,[Quantity]
,[TranNo]
,[LogDateTime]
)
VALUES
(@usernum
, @UserID
,2
,1
,@NextCash
,@NextCashBonus
,@PreCash
,@PreCashBonus
,@NextCash - @PreCash
,@NextCashBonus - @PreCashBonus
,@NPCItemIdx
,@Quantity
,0
,GETDATE()
)
SET @CashLogNo = @@IDENTITY
DECLARE @RowCount INT
SET @RowCount = 1
SET @RemainingCash = @NextCash + @NextCashBonus
SET @ResultCode = 0x00
COMMIT TRAN NPC_Purchase_Transaction
SET XACT_ABORT OFF
so any "repack updates" or does anyone plan to do it? i mean for real..and sorry for being impatience, just can't wait 8D
Go in /etc/init.d/, open cabal and add that line... (x30 made that)
(Red line ofc)Code:#!/bin/sh
#
# Startup script for the Cabal Server
#
# chkconfig: 345 85 15
# description: Cabal World Server
# processname: WorldSvr
# Source function library.
. /etc/rc.d/init.d/functions
daemons=`cat /etc/cabal/server_list | grep -v ^#`
# See how we were called.
case "$1" in
start)
DAEMON_COREFILE_LIMIT=unlimited
for daemon in $daemons
do
echo -n "Starting $daemon: "
daemon -1 --user root $daemon
echo
sleep 3
done
;;
stop)
for daemon in $daemons
do
echo -n "Shutting down $daemon: "
killproc $daemon
echo
done
;;
status)
for daemon in $daemons
do
status $daemon
done
;;
restart)
$0 stop
$0 start
;;
reload)
for daemon in $daemons
do
echo -n "Reloading $daemon: "
killproc $daemon -HUP
echo
done
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit 0
Install Virtual Box, follow a guide on google on how to install CentOS on it. (doesent matter which one, but i still prefer 5.x,i386). Then make what x30unlimited said...
I consider this a repack...Code:1. install centos 5.8 32bit minimal
2. do "yum update"
3. you can skip this if you want, install gnome and vnc (google how)
4. copy JUST the cabal rpm in /root (found in home/rpm)
5. install dependencies : "yum install unixODBC openssl097a net-snmp-utils net-snmp-libs net-snmp lm_sensors gcc freetds dstat compat-libstdc++-33 compat-libstdc++-296"
6. "cd /root" and "rpm -Uvh cabal-server-ph-1.0-1.i386.rpm"
7. copy the usr, home and etc folders to ur server in /
8. copy odbc.ini and odbcinst.ini to /etc
9. configure it all, manually, i haven't used any scripts :P
10. use my link and permision script (save it in /root under the name "link.sh" than do "chmod +x link.sh" and then "./link.sh")
11. "service cabal start"
I like the tutorial and still have x30 error