SphereCommunity
I am almost ashamed to ask this: Player/Char deleting - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: I am almost ashamed to ask this: Player/Char deleting (/Thread-I-am-almost-ashamed-to-ask-this-Player-Char-deleting)



I am almost ashamed to ask this: Player/Char deleting - Joe Loop - 07-02-2013 05:45 AM

Hey.

My server has been running since 2006.
It has been down the last few months due to i was scripting a new level and race system, and some more stuff.

I want to keep my world spawned and decorated as it is, i just want to delete all players that ever exsisted on it.

i know this is a noobish question, but i never had to do it, so which files do i have to delete/empty?

Deleting the files in the /accounts folder, does not do the trick, characters seems to be stored more places, i guess sphereworld or something like that, but just want to make sure before i erase all my work Smile


RE: I am almost ashamed to ask this: Player/Char deleting - Mordaunt - 07-02-2013 07:07 AM

go to the /saves folder and wipe spherechars.scp


RE: I am almost ashamed to ask this: Player/Char deleting - Joe Loop - 07-03-2013 02:23 AM

Thanks...

But it does not work, tried that to .. all caharcters are still there.
And if i delete all the backup-save files in /save folder (those named sphereb01c and so on) it wont startup....

Are the characters saved in those backup files as well somehow? (i got backup ..of the backups... so they are easy restored, i just wanna get rid of all those goddamn accounts Big Grin )


RE: I am almost ashamed to ask this: Player/Char deleting - darksun84 - 07-03-2013 03:36 AM

Try this
PHP Code:
[FUNCTION removeplayer]
REF1=<uid>
FORPLAYERS 6144
    
if <REF1> != <uid// this prevents to remove yourself, if you remove yourself function stop!
        
serv.log Removing <name>
        
remove 1 //1 enables players removal.
    
endif
ENDFOR 

I don't know by the way how much is reliable Big Grin


RE: I am almost ashamed to ask this: Player/Char deleting - Joe Loop - 07-03-2013 04:12 AM

Worked like a charm! thanks!