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!

pointAdder 1.0.5 - give players reward points for killing uniques

Newbie Spellweaver
Joined
Jul 8, 2010
Messages
18
Reaction score
0
Re: [Release] pointAdder 1.0.5 - give players reward points for killing uniques

Thx very much,worked for me too.
 
Newbie Spellweaver
Joined
Oct 30, 2011
Messages
44
Reaction score
1
Re: [Release] pointAdder 1.0.5 - give players reward points for killing uniques

Missing some mobs in the code would be interesting and also records the names of the mob in a db so it would be possible to create a ranking on the site if necesite help implement the code send me an MP

Chern0byl - pointAdder 1.0.5 - give players reward points for killing uniques - RaGEZONE Forums

Check CFG, that program cannot connect to your SQL server.
 
Initiate Mage
Joined
Feb 22, 2012
Messages
1
Reaction score
0
Re: [Release] pointAdder 1.0.5 - give players reward points for killing uniques

So, here is a simple server log parser, which will search log files for every unique kill it can find, and run specific query which you can define by yourself.

WARNING: Before you execute this first time, better ensure there is no
logs from different server in your server folder.


cfg.ini contains common settings for mssql connection and such

rewards.ini file contains definitions for mob kill rewards

cfg.ini -> maxLevelDifference = how much levels higher can character be than unique level

cfg.ini -> query directive

basically, for writing custom query

function has 4 format arguments -

Code:
{0} - nPoints
{1} - Username
{2} - CharID
{3} - charName
{4} - userJID

means, you can use them in query this way (few examples):

query=UPDATE MYTABLE SET POINTS=(POINTS + {0}) WHERE AccountName='{1}'

query=UPDATE SK_Silk set silk_own = (silk_own + {0}) where JID='{4}'

(highest unique it supports is medusa)

Contents should be extracted and runned from the server folder.


Please, report all the issues you get (better, with exception text).

Thanks, great work!
Can you maybe share the source code of the exe file?
I would like to create a unique tracker to follow up deaths.
Thanks.
 
Newbie Spellweaver
Joined
Oct 22, 2011
Messages
33
Reaction score
1
Re: [Release] pointAdder 1.0.5 - give players reward points for killing uniques

Hiho this tool its verry useful can you release this same tool for titan uniques pls :)
 
Junior Spellweaver
Joined
Oct 20, 2011
Messages
111
Reaction score
1
Re: [Release] pointAdder 1.0.5 - give players reward points for killing uniques

I don't understand this tool much , sorry but can you explain me if i did not change the query
and leave it like this
query=UPDATE SK_Silk set silk_own = (silk_own + {0}) where JID='{4}'
how much silks the players will get if they killed a unique, and how i can change this amount of silks, waiting your answer .
THANKS
 
Newbie Spellweaver
Joined
May 25, 2014
Messages
7
Reaction score
0
i want to make
if some body kill yano and jupiter and...............>>
take silk how can i do this >>>
 
† Working in Secret †
Joined
Jun 30, 2011
Messages
657
Reaction score
265
And if a separate list of Unique is created. And the program find these uniques in the logs? I mean to work with custom uniques.
 
Back
Top