• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Urban Gaming Client/Database/Source Code Only

Custom Title Activated
Loyal Member
Joined
Jul 16, 2012
Messages
1,310
Reaction score
116
my test client don't have BTG and i don't know what command for BTG.

/limit_event_begin 1 300 1 15 12 1 ....

1 for level 1
300 for max level 300
1 for 1 minute wait time
15 minutes for time to consume BTG
12 is for exp
1 is for item drop.

you forgot to put item drop value that's why it won't work..



can you share your level editor? mine is not working i can't edit gates :(

i use lev editor on source. but problem is buttons are missing that's why can't edit.
 
Newbie Spellweaver
Joined
May 4, 2017
Messages
50
Reaction score
2
/limit_event_begin 1 300 1 15 12 1 ....

1 for level 1
300 for max level 300
1 for 1 minute wait time
15 minutes for time to consume BTG
12 is for exp
1 is for item drop.

you forgot to put item drop value that's why it won't work..





i use lev editor on source. but problem is buttons are missing that's why can't edit.
the only tool that i can't use is the lev editor. anyway thanks for the info, and about the changing of encryption i already solved it.
 
Junior Spellweaver
Joined
Jun 14, 2008
Messages
113
Reaction score
1
caspian0 I need your support. Can I PM you or in facebook. Thank you :)



Can anyone help me with this problem?
SlUmuNi - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Dec 13, 2007
Messages
76
Reaction score
19
caspian0 I need your support. Can I PM you or in facebook. Thank you :)



Can anyone help me with this problem?
SlUmuNi - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums

adjust your *.cfg config on server side



/limit_event_begin 1 300 1 15 12 1 ....

1 for level 1
300 for max level 300
1 for 1 minute wait time
15 minutes for time to consume BTG
12 is for exp
1 is for item drop.

you forgot to put item drop value that's why it won't work..





i use lev editor on source. but problem is buttons are missing that's why can't edit.

enlarge your screen resolution to see the buttons, mine is 1920*1080



i checked but, i still don't know even comparing with doom tyranny ,hehe
Can you help please ^^ thanks so much

try to put this code inside GLTowerWarsFieldMan::CheckWinner

//check capture here
int nSCORE[SW_SCHOOL_MAX] = { 0, 0, 0 };

SCHOOLWAR_TOWER_STATUS_MAP_ITER pos = sSchoolWAR.m_mapTowerStatus.begin();
SCHOOLWAR_TOWER_STATUS_MAP_ITER end = sSchoolWAR.m_mapTowerStatus.end();
for ( ; pos != end; pos++ )
{
const SSCHOOLWAR_TOWER_STATUS& sTOWER = pos->second;
if ( sTOWER.emHOLDER >= SW_SCHOOL_MAX ) continue;
nSCORE[sTOWER.emHOLDER] ++;
}

for( int i=0; i < SW_SCHOOL_MAX; ++ i )
{
if ( nSCORE >= 2 ) //Tyranny remark: means captured 2 tower or above = winner
{

//fix Tyranny Buff UI by edwin 20181028 ***** 1

if ( nSCORE == 2 )
{
GLMSG::SNET_TOWERWARS_DOBATTLEEND_AGT NetMsgAgentReqEnd;
NetMsgAgentReqEnd.dwID = dwID;
NetMsgAgentReqEnd.dwSCHOOL = i;
NetMsgAgentReqEnd.bEnd = true;
GLGaeaServer::GetInstance().SENDTOAGENT( &NetMsgAgentReqEnd );

GLMSG::SNETPC_SERVER_TOWERWARS_WINNER_AG NetMsgAgentWinner;
NetMsgAgentWinner.dwID = dwID;
NetMsgAgentWinner.wSCHOOL = i;
GLGaeaServer::GetInstance().SENDTOAGENT ( &NetMsgAgentWinner );
}
//fix Tyranny Buff UI by edwin 20181028 ***** 0
}
}
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Jun 14, 2008
Messages
113
Reaction score
1
adjust your *.cfg config on server side





enlarge your screen resolution to see the buttons, mine is 1920*1080





try to put this code inside GLTowerWarsFieldMan::CheckWinner

//check capture here
int nSCORE[SW_SCHOOL_MAX] = { 0, 0, 0 };

SCHOOLWAR_TOWER_STATUS_MAP_ITER pos = sSchoolWAR.m_mapTowerStatus.begin();
SCHOOLWAR_TOWER_STATUS_MAP_ITER end = sSchoolWAR.m_mapTowerStatus.end();
for ( ; pos != end; pos++ )
{
const SSCHOOLWAR_TOWER_STATUS& sTOWER = pos->second;
if ( sTOWER.emHOLDER >= SW_SCHOOL_MAX ) continue;
nSCORE[sTOWER.emHOLDER] ++;
}

for( int i=0; i < SW_SCHOOL_MAX; ++ i )
{
if ( nSCORE >= 2 ) //Tyranny remark: means captured 2 tower or above = winner
{

//fix Tyranny Buff UI by edwin 20181028 ***** 1

if ( nSCORE == 2 )
{
GLMSG::SNET_TOWERWARS_DOBATTLEEND_AGT NetMsgAgentReqEnd;
NetMsgAgentReqEnd.dwID = dwID;
NetMsgAgentReqEnd.dwSCHOOL = i;
NetMsgAgentReqEnd.bEnd = true;
GLGaeaServer::GetInstance().SENDTOAGENT( &NetMsgAgentReqEnd );

GLMSG::SNETPC_SERVER_TOWERWARS_WINNER_AG NetMsgAgentWinner;
NetMsgAgentWinner.dwID = dwID;
NetMsgAgentWinner.wSCHOOL = i;
GLGaeaServer::GetInstance().SENDTOAGENT ( &NetMsgAgentWinner );
}
//fix Tyranny Buff UI by edwin 20181028 ***** 0
}
}


Can you share your bin file for the working tyranny? And *.ini files too. Thanks bro
 
Newbie Spellweaver
Joined
May 4, 2017
Messages
50
Reaction score
2
anyone know how to adjust the exp rate from the source? and also the party system with other school?
 
Newbie Spellweaver
Joined
Feb 1, 2019
Messages
41
Reaction score
1
anyone know how to adjust the exp rate from the source? and also the party system with other school?
find default.charclass inside Glogic.rcc
bPARTY_2OTHERSCHOOL 0 //1 is On. 0 is Off
bCLUB_2OTHERSCHOOL 0 //1 is On. 0 is Off


about exp rate in source.. please help us..
i need to edit
Exp insource or how to activate BTG in source code.




caspian0 I need your support. Can I PM you or in facebook. Thank you :)



Can anyone help me with this problem?

SlUmuNi - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums

about lowing cpu usage...
locate your server files.
open your cfg
then open (example serve1.cfg etc)
put this code

Code:
[COLOR=#666666]use_event_thread 1[/COLOR]


compare this to your cfg ...

// ////////////////////////////////////////////////////////////////////////////
// Session server Reconfigured By IaNz
// ////////////////////////////////////////////////////////////////////////////// server setting value
server_version 1
patch_version 1
server_name SpiritSession
server_max_client 600
server_ip 190.1.1.1
server_service_port 5003
server_control_port 6003
// reserved slot 130
service_provider 3
max_thread 1
use_event_thread 1
// server type [type]
// [type]
// 1 : login server
// 2 : session server
server_type 2
server_group 0 // server group
server_number 0 // server number
// ////////////////////////////////////////////////////////////////////////////// ODBC user database setting value
user_odbc_name RanUser // database server name
user_odbc_user asdasdasdsad
user_odbc_pass asdasdasd
user_odbc_database RanUser
user_odbc_pool_size 5
user_odbc_response_time 10
// ////////////////////////////////////////////////////////////////////////////// log database setting value
log_odbc_name RanLog // database server name
log_odbc_user asdasd
log_odbc_pass asdasdsad
log_odbc_database RanLog
log_odbc_pool_size 5
log_odbc_response_time 10

Goodluck buddy







/limit_event_begin 1 300 1 15 12 1 ....

1 for level 1
300 for max level 300
1 for 1 minute wait time
15 minutes for time to consume BTG
12 is for exp
1 is for item drop.

you forgot to put item drop value that's why it won't work..





i use lev editor on source. but problem is buttons are missing that's why can't edit.


bro. can you share your exptable_max.bin
i dont have exptable_max.bin in my Glogic.rcc
I think exptable_max.bin is the main problem of exp rate here in urban client.
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
May 4, 2017
Messages
50
Reaction score
2
find default.charclass inside Glogic.rcc
bPARTY_2OTHERSCHOOL 0 //1 is On. 0 is Off
bCLUB_2OTHERSCHOOL 0 //1 is On. 0 is Off


about exp rate in source.. please help us..
i need to edit
Exp insource or how to activate BTG in source code.






about lowing cpu usage...
locate your server files.
open your cfg
then open (example serve1.cfg etc)
put this code

Code:
[COLOR=#666666]use_event_thread 1[/COLOR]


compare this to your cfg ...


Goodluck buddy










bro. can you share your exptable_max.bin
i dont have exptable_max.bin in my Glogic.rcc
I think exptable_max.bin is the main problem of exp rate here in urban client.
I FOUND THE PROBLEM IN EXP RATE. FIND EXP_SCALE JUST ADD f (fEXP_SCALE 500.0f)
 
Newbie Spellweaver
Joined
Mar 8, 2019
Messages
83
Reaction score
41
sanaVo - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums
i am using newly compiled amazon.exe and also using the correct parameter but i cant still run amazon.exe
any idea???
 
Newbie Spellweaver
Joined
Mar 19, 2017
Messages
10
Reaction score
0
Bug found: No school winner if case like only Phnx captured two controllers and SG only one controller captured.. I mean no Buff for PHNX
01soBlV - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums

Did someone fix this problem??



Who got error on rando?
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 1, 2019
Messages
41
Reaction score
1
How to activate automatically the btg when i open the server. .



you make sure that rcc must no password and must be extracted.

a4Ra8ri - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums

How to activate automatically the btg when i open the server. .
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 1, 2019
Messages
41
Reaction score
1
how to fix guys.
View top 10 Rank is Not working...
sanaVo - Urban Gaming Client/Database/Source Code Only - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top