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!

Perfect World Titles Delete

Newbie Spellweaver
Joined
Nov 3, 2018
Messages
5
Reaction score
0
Would someone please tell me how/where, server side, to delete all titles on a player so they can start them over. Version 1.5.5 Thank you.
 
Banned
Banned
Joined
Sep 16, 2013
Messages
38
Reaction score
4
Do you want to do it massively? Because titles are not stored separately, they are stored inside the "Base" in the character's gamedbd..
If you want to remove in a unitary way use alex's pwadmin..
If it's massively, you'll have to create a script with the correct package, create a foreach of all characters and reset all octets of titles..


---

There are some scripts on github that do "full titles" reverse this script, and create a foreach so it can do it massively in the database if you want..
 
Upvote 0
Shh, quiet, you might piss somebody off
Developer
Joined
Dec 23, 2011
Messages
1,797
Reaction score
2,161
Would someone please tell me how/where, server side, to delete all titles on a player so they can start them over. Version 1.5.5 Thank you.

on role XML

<role>
<status>
<variable name="title_data" type="Octets">00000000000000000000</variable>
</status>
</role>

replace the value with the zeros on tag "title_data" above.
 
Upvote 0
Back
Top