Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Remove Time Limit From Items?

Junior Spellweaver
Joined
Feb 8, 2011
Messages
101
Reaction score
1
Is there a way to configure the cash items to be all permanent?

Apparently i can extend it's time duration, but can't make them permanent...
 
brumas Can the time limit be set to zero? that would the "infinity" option on most things that require a countdown.

I've tested that, but apparently it cant.

It's based on the 'item type'. And also, it only happens to cash equip items, because normal shop/drop items doesn't come timed (tested with a tool someone released here in the forum). I don't know where or how to change that though.

Edit: Also, don't know if it's a bug, but i also cannot recharge any timed item on Pia with recharge coupons.
 
Last edited:
First of all, check the tbl_goods (limit) tables and set whatever you can to 0.

Edit: Also, don't know if it's a bug, but i also cannot recharge any timed item on Pia with recharge coupons.
As for this, I'm completely baffled. Before moving to a more eTO-like base, recharging was just fine. After, it doesn't. If I go back to a cTO base, it's fine again.
BUUUUUUT, not on another server. It doesn't work with a cTO or eTO base.
 
First of all, check the tbl_goods (limit) tables and set whatever you can to 0.


As for this, I'm completely baffled. Before moving to a more eTO-like base, recharging was just fine. After, it doesn't. If I go back to a cTO base, it's fine again.
BUUUUUUT, not on another server. It doesn't work with a cTO or eTO base.

I already did that, even tried changing the limits on the View, but it still doesn't work.

The best i can do on this is extended the cash shop items duration to about 400 days (limited 'cause it's a smallint type). And that also does not work for items that comes out of those boxes on myshop.
 
I already did that, even tried changing the limits on the View, but it still doesn't work.

The best i can do on this is extended the cash shop items duration to about 400 days (limited 'cause it's a smallint type). And that also does not work for items that comes out of those boxes on myshop.

Check XML. I believe GeneralTimerItem or something.
 
find this in the item you want to change inside libconfig
<ExistType>1</ExistType>
change that to 0 on the item you want to be timeless which works with quests, shops, and item boxes
no idea if this works thru myshop buying though =[
 
Back