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!

[Tool]GetOnline - new tool =)

Junior Spellweaver
Joined
Sep 5, 2012
Messages
121
Reaction score
87
basically it read the managelog file and write it on mysql.
you can use it for best controlling who is online and get the ip decrypted.


Config for ManageServer.ini

Code:
[Log]
ChatLogPath="..\Logs\ChatLog.log"
MoneyLogPath="..\Logs\moneylog.log"
ExpLogPath="..\Logs\explog.log"
CSLogPath="..\Logs\CSLog.log"
GameLogPath="..\Logs\Line2.log"
GMLogPath="..\Logs\GMLog.log"
GMStatLogPath="..\Logs\GMStatLog.log"
StatLogPath="..\Logs\StatLog.log"
FormatLogPath="..\Logs\FormatLog.log"
ManagerLogPath="..\Logs\ManagerLog.log"
LogPath="..\Logs\LocalSaveServer.log"
GateLogPath="..\Logs\Gate.log"
BanLogPath="..\Logs\BanLog.log"
LogLevel=4
Wrong=4
Warning=4
Normal=4
Debug=4

commands to add new mysql user
Code:
enter on console on your centos and write those commands
1ª if you use lampp use this command: /opt/lampp/bin/mysql -uroot -p
1ª if you use native mysql use this one: mysql --user=root --pass=root or game.
2ª CREATE USER 'user'@'ip' IDENTIFIED BY 'passowrd';
3ª GRANT ALL PRIVILEGES ON *.* TO 'user'@'ip' WITH GRANT OPTION;



Download:
 
Back
Top