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!

How to edit character items using Sweetscape 010

Cya nerds
Member
Joined
Feb 26, 2010
Messages
1,379
Reaction score
770
This is how I was doing it almost 10 years ago, but seriously, this isn't supposed to be used all the time, use the info from the template to build a proper editor or edit script.

First you will need to get your chars equip data; You can find a simple query if you don't already know how to here https://forum.ragezone.com/threads/pw5-bug-help.1217651/post-9198340

Then you need to download 010 editor if you don't already have it . Don't ask me for a cracked copy/license.

Open the editor, go to templates, New Template and paste this

C:
//------------------------------------------------
//--- 010 Editor v13.0.1 Binary Template
//
//      File: cabal_equipment.bt
//   Authors: PunkS7yle
//   Version:
//   Purpose:
//  Category:
// File Mask:
//  ID Bytes:
//   History:
//------------------------------------------------

typedef struct {
    BitfieldRightToLeft();
    uint id : 12;
    uint acc_bound : 1;
    uint upgrade : 4;
    uint unk : 2;
    uint char_bound : 1;
    uint bind_on_equip : 1;
    int serial_ID;
    uint option_ID;
    short slot_ID;
    uint year : 7;
    uint month : 4;
    uint day : 5;
    uint hour : 5;
    uint minute : 6;
    uint periodidx : 5;
    } equipment;

equipment equips[FileSize() / 18]<optimize=false>;


Save it for later use.
Once you have the data and the template set up in the editor, watch the video on how to edit/remove/ and export back an item.

 
Last edited:
Legendary Battlemage
Joined
Jul 18, 2009
Messages
624
Reaction score
69
very nice tutorial now i just need to use this to delete bug equips in the character
 
Initiate Mage
Joined
Jul 26, 2023
Messages
28
Reaction score
1
Now I get what you're saying in the other thread. :ROFLMAO:

Thank you so much for this helpful tutorial!
 
Back
Top