7 channel but only first channel work =/
hello ppl,
i'm using this server: http://forum.ragezone.com/f459/ep8-r...elease-923613/
and i trying to put some channels.. and the server only open one of seven channels
https://ap.imagensbrasil.org/images/Semtitulo7bd37.png
well i edited this archives...
Code:
cabal_config.sh << with new lines to move channels 01 to 07 to directories
cabal_restart.sh
cabal_restartlog.sh
cabal_start.sh
cabal_status.sh
cabal_stop.sh
server_list <<with 7channel (01_01 to 01_07)
GlobalMgrSvr.ini <<with new channels parameters
Code:
cabal_config.sh
#!/bin/sh
if [[ $EUID -ne 0 ]]; then
echo "The cabal_config.sh script must be run as root." 1>&2
exit 1
fi
echo -e "\033[1;33mCABAL Server IP configuration.\033[37m"
echo -ne "Enter MSSQL server IP: "
read dbip
sed /etc/cabal/Templates/ini/odbc.ini \
-e "s/dbip/$dbip/g" \
> /etc/odbc.ini.tmp
mv /etc/odbc.ini.tmp /etc/odbc.ini
echo -ne "Enter MSSQL server User: "
read dbuser
echo -ne "Enter MSSQL server Password: "
read dbpw
sed /etc/cabal/Templates/ini/AuthDBAgent.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/AuthDBAgent.ini.tmp
mv /etc/cabal/AuthDBAgent.ini.tmp /etc/cabal/AuthDBAgent.ini
sed /etc/cabal/Templates/ini/CashDBAgent.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/CashDBAgent.ini.tmp
mv /etc/cabal/CashDBAgent.ini.tmp /etc/cabal/CashDBAgent.ini
sed /etc/cabal/Templates/ini/DBAgent_01.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/DBAgent_01.ini.tmp
mv /etc/cabal/DBAgent_01.ini.tmp /etc/cabal/DBAgent_01.ini
sed /etc/cabal/Templates/ini/EventDBAgent.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/EventDBAgent.ini.tmp
mv /etc/cabal/EventDBAgent.ini.tmp /etc/cabal/EventDBAgent.ini
sed /etc/cabal/Templates/ini/GlobalDBAgent.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/GlobalDBAgent.ini.tmp
mv /etc/cabal/GlobalDBAgent.ini.tmp /etc/cabal/GlobalDBAgent.ini
sed /etc/cabal/Templates/ini/PCBangDBAgent.ini \
-e "s/dbuser/$dbuser/g" \
-e "s/dbpw/$dbpw/g" \
> /etc/cabal/PCBangDBAgent.ini.tmp
mv /etc/cabal/PCBangDBAgent.ini.tmp /etc/cabal/PCBangDBAgent.ini
echo -ne "Enter IP for players to connect: "
read cip
sed /etc/cabal/Templates/00001/WorldSvr_01_01.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_01.ini.tmp
mv /etc/cabal/WorldSvr_01_01.ini.tmp /etc/cabal/WorldSvr_01_01.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_02.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_02.ini.tmp
mv /etc/cabal/WorldSvr_01_02.ini.tmp /etc/cabal/WorldSvr_01_02.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_03.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_03.ini.tmp
mv /etc/cabal/WorldSvr_01_03.ini.tmp /etc/cabal/WorldSvr_01_03.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_04.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_04.ini.tmp
mv /etc/cabal/WorldSvr_01_04.ini.tmp /etc/cabal/WorldSvr_01_04.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_05.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_05.ini.tmp
mv /etc/cabal/WorldSvr_01_05.ini.tmp /etc/cabal/WorldSvr_01_05.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_06.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_06.ini.tmp
mv /etc/cabal/WorldSvr_01_06.ini.tmp /etc/cabal/WorldSvr_01_06.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_07.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_07.ini.tmp
mv /etc/cabal/WorldSvr_01_07.ini.tmp /etc/cabal/WorldSvr_01_07.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_08.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_08.ini.tmp
mv /etc/cabal/WorldSvr_01_08.ini.tmp /etc/cabal/WorldSvr_01_08.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_09.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_09.ini.tmp
mv /etc/cabal/WorldSvr_01_09.ini.tmp /etc/cabal/WorldSvr_01_09.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_10.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_10.ini.tmp
mv /etc/cabal/WorldSvr_01_10.ini.tmp /etc/cabal/WorldSvr_01_10.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_11.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_11.ini.tmp
mv /etc/cabal/WorldSvr_01_11.ini.tmp /etc/cabal/WorldSvr_01_11.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_12.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_12.ini.tmp
mv /etc/cabal/WorldSvr_01_12.ini.tmp /etc/cabal/WorldSvr_01_12.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_13.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_13.ini.tmp
mv /etc/cabal/WorldSvr_01_13.ini.tmp /etc/cabal/WorldSvr_01_13.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_14.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_14.ini.tmp
mv /etc/cabal/WorldSvr_01_14.ini.tmp /etc/cabal/WorldSvr_01_14.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_15.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_15.ini.tmp
mv /etc/cabal/WorldSvr_01_15.ini.tmp /etc/cabal/WorldSvr_01_15.ini
sed /etc/cabal/Templates/00001/WorldSvr_01_16.ini \
-e "s/cip/$cip/g" \
> /etc/cabal/WorldSvr_01_16.ini.tmp
mv /etc/cabal/WorldSvr_01_16.ini.tmp /etc/cabal/WorldSvr_01_16.ini
echo -e "\e[0;31mRestart your CABAL Services!\e[0m"
cabal_restart
#!/bin/sh
countdown()
(
IFS=:
set -- $*
secs=$(( ${1#0} * 3600 + ${2#0} * 60 + ${3#0} ))
while [ $secs -gt 0 ]
do
sleep 1 &
echo -e -n "\033[1;33m"
printf "\rWaiting for GlobalMgrSvr: [ %02d:%02d:%02d ]" $((secs/3600)) $(( (secs/60)%60)) $((secs%60))
echo -e -n "\033[0m"
secs=$(( $secs - 1 ))
wait
done
echo
)
echo -e "\n\033[0;31m..-----Shutting down CABAL Services-----..\033[0m"
/sbin/service crond stop
/sbin/service WorldSvr_01_16 stop
/sbin/service WorldSvr_01_15 stop
/sbin/service WorldSvr_01_14 stop
/sbin/service WorldSvr_01_13 stop
/sbin/service WorldSvr_01_12 stop
/sbin/service WorldSvr_01_11 stop
/sbin/service WorldSvr_01_10 stop
/sbin/service WorldSvr_01_09 stop
/sbin/service WorldSvr_01_08 stop
/sbin/service WorldSvr_01_07 stop
/sbin/service WorldSvr_01_06 stop
/sbin/service WorldSvr_01_05 stop
/sbin/service WorldSvr_01_04 stop
/sbin/service WorldSvr_01_03 stop
/sbin/service WorldSvr_01_02 stop
/sbin/service WorldSvr_01_01 stop
/sbin/service AgentShop_01 stop
/sbin/service LoginSvr_01 stop
/sbin/service EventMgrSvr stop
/sbin/service ChatNode_01 stop
/sbin/service PCBangDBAgent stop
/sbin/service PartySvr_01 stop
/sbin/service EventDBAgent stop
/sbin/service GlobalMgrSvr stop
/sbin/service CashDBAgent stop
/sbin/service RockAndRollITS stop
/sbin/service AuthDBAgent stop
/sbin/service GlobalDBAgent stop
/sbin/service DBAgent_01 stop
echo -e "\n\033[0;32m..-----Starting up CABAL Services-----..\033[0m"
/sbin/service DBAgent_01 start
/sbin/service GlobalDBAgent start
/sbin/service AuthDBAgent start
sleep 1
/sbin/service RockAndRollITS start
/sbin/service CashDBAgent start
sleep 1
/sbin/service GlobalMgrSvr start
/sbin/service EventDBAgent start
/sbin/service PartySvr_01 start
/sbin/service PCBangDBAgent start
countdown "00:00:12"
/sbin/service ChatNode_01 start
/sbin/service EventMgrSvr start
/sbin/service LoginSvr_01 start
/sbin/service AgentShop_01 start
/sbin/service WorldSvr_01_01 start
/sbin/service WorldSvr_01_02 start
/sbin/service WorldSvr_01_03 start
/sbin/service WorldSvr_01_04 start
/sbin/service WorldSvr_01_05 start
/sbin/service WorldSvr_01_06 start
/sbin/service WorldSvr_01_07 start
/sbin/service crond start
cabal_restartlog
#!/bin/sh
rm -f /var/log/cabal/*
countdown()
(
IFS=:
set -- $*
secs=$(( ${1#0} * 3600 + ${2#0} * 60 + ${3#0} ))
while [ $secs -gt 0 ]
do
sleep 1 &
echo -e -n "\033[1;33m"
printf "\rWaiting for GlobalMgrSvr: [ %02d:%02d:%02d ]" $((secs/3600)) $(( (secs/60)%60)) $((secs%60))
echo -e -n "\033[0m"
secs=$(( $secs - 1 ))
wait
done
echo
)
echo -e "\n\033[0;31m..-----Shutting down CABAL Services-----..\033[0m"
/sbin/service crond stop
/sbin/service WorldSvr_01_16 stop
/sbin/service WorldSvr_01_15 stop
/sbin/service WorldSvr_01_14 stop
/sbin/service WorldSvr_01_13 stop
/sbin/service WorldSvr_01_12 stop
/sbin/service WorldSvr_01_11 stop
/sbin/service WorldSvr_01_10 stop
/sbin/service WorldSvr_01_09 stop
/sbin/service WorldSvr_01_08 stop
/sbin/service WorldSvr_01_07 stop
/sbin/service WorldSvr_01_06 stop
/sbin/service WorldSvr_01_05 stop
/sbin/service WorldSvr_01_04 stop
/sbin/service WorldSvr_01_03 stop
/sbin/service WorldSvr_01_02 stop
/sbin/service WorldSvr_01_01 stop
/sbin/service AgentShop_01 stop
/sbin/service LoginSvr_01 stop
/sbin/service EventMgrSvr stop
/sbin/service ChatNode_01 stop
/sbin/service PCBangDBAgent stop
/sbin/service PartySvr_01 stop
/sbin/service EventDBAgent stop
/sbin/service GlobalMgrSvr stop
/sbin/service CashDBAgent stop
/sbin/service RockAndRollITS stop
/sbin/service AuthDBAgent stop
/sbin/service GlobalDBAgent stop
/sbin/service DBAgent_01 stop
echo -e "\n\033[0;32m..-----Starting up CABAL Services-----..\033[0m"
/sbin/service DBAgent_01 start
/sbin/service GlobalDBAgent start
/sbin/service AuthDBAgent start
sleep 1
/sbin/service RockAndRollITS start
/sbin/service CashDBAgent start
sleep 1
/sbin/service GlobalMgrSvr start
/sbin/service EventDBAgent start
/sbin/service PartySvr_01 start
/sbin/service PCBangDBAgent start
countdown "00:00:12"
/sbin/service ChatNode_01 start
/sbin/service EventMgrSvr start
/sbin/service LoginSvr_01 start
/sbin/service AgentShop_01 start
/sbin/service WorldSvr_01_01 start
/sbin/service WorldSvr_01_02 start
/sbin/service WorldSvr_01_03 start
/sbin/service WorldSvr_01_04 start
/sbin/service WorldSvr_01_05 start
/sbin/service WorldSvr_01_06 start
/sbin/service WorldSvr_01_07 start
/sbin/service crond start
cabal_start
#!/bin/sh
countdown()
(
IFS=:
set -- $*
secs=$(( ${1#0} * 3600 + ${2#0} * 60 + ${3#0} ))
while [ $secs -gt 0 ]
do
sleep 1 &
echo -e -n "\033[1;33m"
printf "\rWaiting for GlobalMgrSvr: [ %02d:%02d:%02d ]" $((secs/3600)) $(( (secs/60)%60)) $((secs%60))
echo -e -n "\033[0m"
secs=$(( $secs - 1 ))
wait
done
echo
)
echo -e "\n\033[0;31m..-----Shutting down CABAL Services-----..\033[0m"
/sbin/service crond stop
/sbin/service WorldSvr_01_16 stop
/sbin/service WorldSvr_01_15 stop
/sbin/service WorldSvr_01_14 stop
/sbin/service WorldSvr_01_13 stop
/sbin/service WorldSvr_01_12 stop
/sbin/service WorldSvr_01_11 stop
/sbin/service WorldSvr_01_10 stop
/sbin/service WorldSvr_01_09 stop
/sbin/service WorldSvr_01_08 stop
/sbin/service WorldSvr_01_07 stop
/sbin/service WorldSvr_01_06 stop
/sbin/service WorldSvr_01_05 stop
/sbin/service WorldSvr_01_04 stop
/sbin/service WorldSvr_01_03 stop
/sbin/service WorldSvr_01_02 stop
/sbin/service WorldSvr_01_01 stop
/sbin/service AgentShop_01 stop
/sbin/service LoginSvr_01 stop
/sbin/service EventMgrSvr stop
/sbin/service ChatNode_01 stop
/sbin/service PCBangDBAgent stop
/sbin/service PartySvr_01 stop
/sbin/service EventDBAgent stop
/sbin/service GlobalMgrSvr stop
/sbin/service CashDBAgent stop
/sbin/service RockAndRollITS stop
/sbin/service AuthDBAgent stop
/sbin/service GlobalDBAgent stop
/sbin/service DBAgent_01 stop
echo -e "\n\033[0;32m..-----Starting up CABAL Services-----..\033[0m"
/sbin/service DBAgent_01 start
/sbin/service GlobalDBAgent start
/sbin/service AuthDBAgent start
sleep 1
/sbin/service RockAndRollITS start
/sbin/service CashDBAgent start
sleep 1
/sbin/service GlobalMgrSvr start
/sbin/service EventDBAgent start
/sbin/service PartySvr_01 start
/sbin/service PCBangDBAgent start
countdown "00:00:12"
/sbin/service ChatNode_01 start
/sbin/service EventMgrSvr start
/sbin/service LoginSvr_01 start
/sbin/service AgentShop_01 start
/sbin/service WorldSvr_01_01 start
/sbin/service WorldSvr_01_02 start
/sbin/service WorldSvr_01_03 start
/sbin/service WorldSvr_01_04 start
/sbin/service WorldSvr_01_05 start
/sbin/service WorldSvr_01_06 start
/sbin/service WorldSvr_01_07 start
ret=`ps aux | grep crond | grep ^root | grep -v grep`
if [ -z "$ret" ]; then
sleep 1
/sbin/service crond start
fi
cabal_status
#!/bin/sh
echo -e "\n\033[0;33m..-----Status of CABAL Services-----..\033[0m"
/sbin/service crond status
/sbin/service DBAgent_01 status
/sbin/service GlobalDBAgent status
/sbin/service AuthDBAgent status
/sbin/service RockAndRollITS status
/sbin/service CashDBAgent status
/sbin/service GlobalMgrSvr status
/sbin/service EventDBAgent status
/sbin/service PartySvr_01 status
/sbin/service PCBangDBAgent status
/sbin/service ChatNode_01 status
/sbin/service EventMgrSvr status
/sbin/service LoginSvr_01 status
/sbin/service AgentShop_01 status
/sbin/service WorldSvr_01_01 status
/sbin/service WorldSvr_01_02 status
/sbin/service WorldSvr_01_03 status
/sbin/service WorldSvr_01_04 status
/sbin/service WorldSvr_01_05 status
/sbin/service WorldSvr_01_06 status
/sbin/service WorldSvr_01_07 status
/sbin/service WorldSvr_01_08 status
/sbin/service WorldSvr_01_09 status
/sbin/service WorldSvr_01_10 status
/sbin/service WorldSvr_01_11 status
/sbin/service WorldSvr_01_12 status
/sbin/service WorldSvr_01_13 status
/sbin/service WorldSvr_01_14 status
/sbin/service WorldSvr_01_15 status
/sbin/service WorldSvr_01_16 status
cabal_stop
#!/bin/sh
echo -e "\n\033[0;31m..-----Shutting down CABAL Services-----..\033[0m"
/sbin/service crond stop
/sbin/service WorldSvr_01_16 stop
/sbin/service WorldSvr_01_15 stop
/sbin/service WorldSvr_01_14 stop
/sbin/service WorldSvr_01_13 stop
/sbin/service WorldSvr_01_12 stop
/sbin/service WorldSvr_01_11 stop
/sbin/service WorldSvr_01_10 stop
/sbin/service WorldSvr_01_09 stop
/sbin/service WorldSvr_01_08 stop
/sbin/service WorldSvr_01_07 stop
/sbin/service WorldSvr_01_06 stop
/sbin/service WorldSvr_01_05 stop
/sbin/service WorldSvr_01_04 stop
/sbin/service WorldSvr_01_03 stop
/sbin/service WorldSvr_01_02 stop
/sbin/service WorldSvr_01_01 stop
/sbin/service AgentShop_01 stop
/sbin/service LoginSvr_01 stop
/sbin/service EventMgrSvr stop
/sbin/service ChatNode_01 stop
/sbin/service PCBangDBAgent stop
/sbin/service PartySvr_01 stop
/sbin/service EventDBAgent stop
/sbin/service GlobalMgrSvr stop
/sbin/service CashDBAgent stop
/sbin/service RockAndRollITS stop
/sbin/service AuthDBAgent stop
/sbin/service GlobalDBAgent stop
/sbin/service DBAgent_01 stop
GlobalMgrSvr
[NetLib]
ConnectRetryNum=10
ConnectTimeout=10000
CutUnregisteredCommand=0
DisableReactorPipe=0
LinklayerAsyncConnect=0
LogLevel=3
MaxStayTimeInQueue=0
MaxUserNum=-1
MemPoolUnitSizeClass=2
Port=38170
ProcessDataLimit=1024
ReactorTimeOut=-1
SendMaxBufSizeLinkHandler=262144
SendMaxBufSizeUserHandler=262144
TcpNoDelay=1
UseEncryptPacket=0
WatchsNoPackLimit=1000
SendMaxBufSize=65536
SystemLogTTimeOut=100
ConnectRetryTime=5000
[GlobalMgrSvr]
LoadServerAndChannelType=1
SubPasswordCheckIntervalMinute=60
SubPasswordCheckMaxCount=5
UseChangeCCUSystem=0
AllowDuplicatedDaemon=1
DefaultServerOpen=0
DisorderIfLicenseVerifyFailed=1
ForceLicenseVerifyFail=0
DailyQuestResetTime=0
DailyQuestDuration=1440
WorldMaxUserNum=250
NoNotifyTimeLimit=60000
ChatLinkOverServerNation=0
Timer=1:10000,2:300000
[DefaultServerCfg]
#Channels
Languages=0
[Server01]
ServerType=16
Languages=0
# Channel 1 (WorldSvr_01_01)
ChannelType01=1
MaxUserNum01=80
ServerOpen01=1
# Channel 2 (WorldSvr_01_2)
ChannelType02=1
MaxUserNum02=80
ServerOpen02=1
# Channel 3 (WorldSvr_01_3)
ChannelType03=1
MaxUserNum03=80
ServerOpen03=1
# Channel 4 (WorldSvr_01_4)
ChannelType04=3
MaxUserNum04=100
ServerOpen04=1
# Channel 5 (WorldSvr_01_5)
ChannelType05=2
MaxUserNum05=80
ServerOpen05=1
# Channel 6 (WorldSvr_01_6)
ChannelType06=2
MaxUserNum06=80
ServerOpen06=1
# Channel 7 war (WorldSvr_01_7)
ChannelType07=5
MaxUserNum07=80
ServerOpen07=1
# War 52-79 (WorldSvr_01_12)
ChannelType12=16781392
MaxUserNum12=200
ServerOpen12=1
EntryLimitLevel12=52:27
EntryLimitRank12=1:6
# War 80-109 (WorldSvr_01_13)
ChannelType13=33558608
MaxUserNum13=200
ServerOpen13=1
EntryLimitLevel13=80:29
EntryLimitRank13=1:9
# War 110-139 (WorldSvr_01_14)
ChannelType14=50335824
MaxUserNum14=200
ServerOpen14=1
EntryLimitLevel14=110:29
EntryLimitRank14=1:9
# War 140-169 (WorldSvr_01_15)
ChannelType15=67113040
MaxUserNum15=200
ServerOpen15=1
EntryLimitLevel15=140:29
EntryLimitRank15=1:9
# War 170-190 (WorldSvr_01_16)
ChannelType16=83890256
MaxUserNum16=200
ServerOpen16=1
EntryLimitLevel16=170:20
EntryLimitRank16=1:9
[DBAgent]
Addr=127.0.0.1
Port=38180
[RockAndRoll]
Type=0
RARAddress=127.0.0.1
RARPortNum=32001
Interval=21600000
server_list
DBAgent_01
GlobalDBAgent
AuthDBAgent
RockAndRollITS
CashDBAgent
GlobalMgrSvr
EventDBAgent
PartySvr_01
PCBangDBAgent
ChatNode_01
EventMgrSvr
LoginSvr_01
AgentShop_01
WorldSvr_01_01
WorldSvr_01_02
WorldSvr_01_03
WorldSvr_01_04
WorldSvr_01_05
WorldSvr_01_06
WorldSvr_01_07
Worlds
i just modify the ports... 38111, 38112, 38113, 38114, 38115, 38116, 38117 and the ips
Re: 7 channel but only first channel work =/
config manually and don't forget to turn off centos firewall or else you can't enter, please provide logs :)
Re: 7 channel but only first channel work =/
You explained your problem very well, but logs are needed to check anything.
Please post ur logs of every World + GlobalMgrSvr + AgentShop.
Ty
1 Attachment(s)
Re: 7 channel but only first channel work =/
Quote:
Originally Posted by
Dens666
You explained your problem very well, but logs are needed to check anything.
Please post ur logs of every World + GlobalMgrSvr + AgentShop.
Ty
ty luis R and dens666, here is the logs: Attachment 156271
2 Attachment(s)
Re: 7 channel but only first channel work =/
Quote:
Originally Posted by
Dens666
Post ur .inis from log i can't see much.
I can only thing that you have wrong settings in worldsvr because it cant communicate with other services.
here:
Attachment 156272
Attachment 156273
Re: 7 channel but only first channel work =/
Post ur .inis from log i can't see much.
I can only thing that you have wrong settings in worldsvr because it cant communicate with other services.
Re: 7 channel but only first channel work =/
Problem solved
gm can you close this topic?