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!

[Darkeden 6.68] how do i add gold medal? gold coin system? on my own server?

Newbie Spellweaver
Joined
Nov 25, 2016
Messages
5
Reaction score
0
i opened up 6.68 server.
i saw most of darkeden servers, active at present, using medal or coin system.
and i wanna have it too badly :eek:tt:.

trust me, i have googled so much like for a whole day, then found only this one.

CREATE TABLE `GoldMedalCount` (
`PlayerID` varchar(10) NOT NULL default '',
`getTime` datetime NOT NULL default '0000-00-00 00:00:00'
) TYPE=MyISAM;

but, this is just the sql adding the variable :$:.

i need a trigger to increase the medal by killing mobs :$::$::$:.

please share with me if you know anything about gold medal.
thank you
 
Initiate Mage
Joined
Mar 15, 2017
Messages
1
Reaction score
0
Hi dude

Sorry this is unrelated, but how can I get the server files?

Also I have some SQL experience, but not worked on Darkeden but here's how I would tackle this issue.

Can't you create an SQL query that runs when a mob dies?

Something like

UPDATE goldmedalcount SET medals = medals + 1 WHERE PlayerID = $playerid
 
Upvote 0
Newbie Spellweaver
Joined
Oct 14, 2012
Messages
27
Reaction score
6
You enable gold medal system in Attrinfo table.
In there you also edit how often they drop.
 
Upvote 0
Back
Top