Silk from max lvl

02/04/2015 00:55 kingstonefm#1
i need to know how to make player to take silk per hour but when he be maxlvl
as when player max lvl the silk give to him per hour
02/04/2015 01:40 ​Exo#2
Simply add a condition to the query lines.
02/04/2015 15:05 Aaron*#3
in ur _AddLogChar , you will find : If (@Tminutes >= 60)
begin
make it :
Quote:
Declare @ReqLvl tinyint = (select curlevel from sro_vt_shard.._char where charid = @charid)
If (@tminutues >= 60 and @reqlevel >= 110)
begin
change 110 to ur max lvl.