Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

SQL Script to Tweek all the Pets on your server

Junior Spellweaver
Joined
Apr 27, 2015
Messages
176
Reaction score
107
Just another fun example of something you can do. This will max all pets for everyone. And you can change figures to your liking.

Code:
USE ROM_World
GO
UPDATE dbo.RoleData_Pet
SET Lv = 100, Loyal = 100, Hunger = 100, Spirit = 10000, STR = 300, STA = 300, AGI = 300, INT = 300, MND = 300, SkillPoint = 99999, LifeSkill1 = 1114898432, LifeSkill2 = 1114898432, LifeSkill3 = 1114898432
GO

EDIT: Added the LifeSkill values which set pet crafting Herb/Ore/Wood to lvl 61

Click LIKE LIKE LIKE
Did I mention to click Like :O lol
 
Last edited:
Junior Spellweaver
Joined
Jul 9, 2014
Messages
168
Reaction score
53
Nice.
Btw, you can do alot of things using next trick: add test zones to RAServer, that would be handled by 6.0-ch zone.exe.
After it you would be able to use old drawing items trick directly from client.
 
Junior Spellweaver
Joined
Apr 27, 2015
Messages
176
Reaction score
107
Can you give some examples ? I have not heard of a drawing item trick.
 
Junior Spellweaver
Joined
Jul 9, 2014
Messages
168
Reaction score
53
It's old funny trick, which had been fixed approx. at ch6.
1 of the examples googled by "cheat engine dupe Runes of Magic" - .
Trick had been based on incorrect item validation, when you got it from item query to backpack. You just modify stats of item(or query slot) in memory, add item to backpack query(for ex., sell item to trader and buy back or get it from mail or loot) and receive modified item.
Using this trick gave ability to modify equip, pets or gasha's contents(so you can receive most part of items in game after open gasha).
 
Back
Top