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 Fix Character Deletion in a Few Easy Steps

Joined
Sep 30, 2006
Messages
735
Reaction score
207
Super easy...

Log into your server, Create a file called anything you want: EX : F.sql

Put this in the file
Code:
CREATE FUNCTION check_communicate_lock(uname TEXT) RETURNS integer
AS 'select 1;'
LANGUAGE SQL
IMMUTABLE
RETURNS NULL ON NULL INPUT;

log into psql and connect to ffmember (/c ffmember)
type \i [filenamehere](EX: "\i F.sql")

done, that's it...
 
Newbie Spellweaver
Joined
Apr 16, 2016
Messages
6
Reaction score
0
Hi,

How to delete a character completely?
I can still find the records in the database.
 
Back
Top