How to change job cave Level requirement?

04/13/2013 14:52 noenergy#1
I have a question about the job cave Level requirement.
I have already changed it in the database on the tabel _RefTeleLink and in the media teleportlink.txt.
But wont work
I think i need to change it in the sro_cleint.exe or in the SR_Gameserver.exe but i have no idea and experience in hex.
Can someone help me?
Thx for all replies.
With friendly greeting NoEnergy
04/13/2013 23:57 royalblade#2
That is part of the fun. You need to change it in the game world config table too tho.

To make ur life easier. Just type in ur minimum level in there...
Code:
Use SRO_VT_SHARD_INIT
GO
DECLARE @Level tinyint = 105 --Your Minimum Level here
UPDATE _RefGame_World_Config 
SET Value = @Level
WHERE ValueCodeName128='ENTER_LIMIT_CONDITION_LEVEL_MINIMUM_NUM'
04/13/2013 23:58 noenergy#3
thx you realy much !
04/14/2013 00:01 royalblade#4
Also you might wanna change a few other things like these ones:

Code:
ENTER_LIMIT_CONDITION_LEVEL_MINIMUM_NUM	60	INT32
ENTER_LIMIT_CONDITION_JOB_CLOTHES_PUT_ON	ON	STRING
ENTER_LIMIT_CONDITION_RIDE_COS_NOT_RIDING	ON	STRING
ENTER_LIMIT_CONDITION_TRADE_COS_NOT_RIDING	ON	STRING
ENTER_LIMIT_CONDITION_FRPVP_VOUCHER_TAKE_OFF	ON	STRING
ENTER_LIMIT_CONDITION_TEMPLE_ASSOCIATION	ON	STRING
ENTER_LIMIT_CONDITION_TEMPLE_ASSOCIATION_RATE_MERCHANT_HUNTER	70	INT32
ENTER_LIMIT_CONDITION_TEMPLE_ASSOCIATION_RATE_THIEF	70	INT32
ENTER_LIMIT_CONDITION_TEMPLE_ASSOCIATION_MINIMUM_NUM	30	INT32
Quote:
Select * from _RefGame_World_Config where GroupCodeName128 = 'GROUP_TEMPLE_DEFAULT'
04/14/2013 22:18 noenergy#5
thx but i have already see it :-)