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!

About RanLog

Junior Spellweaver
Joined
Dec 21, 2008
Messages
112
Reaction score
0
Dear RAN Developers,

My RanLog Database is so heavy now.
What will happen if I will delete my existing RanLog DB
and replace with fresh empty new RanLog DB?

Pls help sir! Thank You
 
Newbie Spellweaver
Joined
Mar 30, 2009
Messages
42
Reaction score
0
Dear RAN Developers,

My RanLog Database is so heavy now.
What will happen if I will delete my existing RanLog DB
and replace with fresh empty new RanLog DB?

Pls help sir! Thank You

You delete you ranlog anytime when your server is offline.
Just replace it with a fresh one.
 
Upvote 0
Junior Spellweaver
Joined
Dec 21, 2008
Messages
112
Reaction score
0
Then sir if my existing RanLog DB will be deleted.
What will happen to the items and money of the players?
It will disappear or lost sir?
 
Last edited:
Upvote 0
Joined
Feb 8, 2009
Messages
524
Reaction score
106
just run this query i think it will clear out the logs and not delete it..

Code:
USE RanLog
Truncate table "ItemList"
Truncate table "LogAction"
Truncate table "LogExchangeFlag"
Truncate table "LogHackProgram"
Truncate table "LogItemExchange"
Truncate table "LogItemMax"
Truncate table "LogMakeType"
Truncate table "LogServerState"
Truncate table "SKillList"

thats what i use every maintenance and my ranlog is only 4mb..2mb if shrink
 
Upvote 0
Junior Spellweaver
Joined
Dec 21, 2008
Messages
112
Reaction score
0
@denvee

Sir but still Ok to delete the existing RanLog DB?
Theres no error at in game if I will delete RanLog DB and replace with new one? It will nnot affect in game characters?
Because honestly sir I dont know how to configure the code you gave
 
Upvote 0
QT is better than VS
Joined
Jul 29, 2009
Messages
908
Reaction score
389
@denvee

Sir but still Ok to delete the existing RanLog DB?
Theres no error at in game if I will delete RanLog DB and replace with new one? It will nnot affect in game characters?
Because honestly sir I dont know how to configure the code you gave

Open your Sql then New Query
Paste this codes:
USE RanLog
Truncate table "ItemList"
Truncate table "LogAction"
Truncate table "LogExchangeFlag"
Truncate table "LogHackProgram"
Truncate table "LogItemExchange"
Truncate table "LogItemMax"
Truncate table "LogMakeType"
Truncate table "LogServerState"
Truncate table "SKillList"

then execute ^_^ DONE
 
Upvote 0
Joined
Feb 8, 2009
Messages
524
Reaction score
106
@denvee

Sir but still Ok to delete the existing RanLog DB?
Theres no error at in game if I will delete RanLog DB and replace with new one? It will nnot affect in game characters?
Because honestly sir I dont know how to configure the code you gave

you will not loose anything ingame... but you will get alot of errors in your server files.... like cannot find blah blah in DB blah blah....

trust me i did this once and i regreted it... do not delete ranlog.
 
Upvote 0
Back
Top