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!

[MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
.:: MikeScript - Mesos System - For FlareCMS ::.
Welcome Ragezone'rz. I am planning of creating many scripts for FlareCMS. I am looking for a Designer to start my own project with. Please Remember that this is only For Flare CMS

NEXON CODE VERSION

Download:
Code:
Rapidshare - http://rapidshare.com/files/143333098/MikeScript_-_Mesos_Script_-_FlareCMS_-_V1.rar
Direct Main Website Download - http://ddms.no-ip.org/maple/downloads/MikeScript - Mesos Script - FlareCMS - V1.rar
Pictured:
Code:
http://www.ragezone.com/forum/showthread.php?t=464222
.:: What it does ::.​
This meso code lets a user activate a code givin by a GM. This code will add a amount to the Character's Mesos. A GM can make the code, And insert the amount the code will give. A GM can also View Existing codes​
.:: Mesos System ::.
The system is has the following:
Code:
Activate Mesos Script
Create Meso Code *GM Only*
View Existing Codes *GM Only*
Activate meso:
A user can activate a code made by the GM. he will recieve the amount of mesos the code holds. Code can only be used once

Create Meso Code:
A GM Can Create a meso code for anyone to use.
There is 1 Box wich you most write the amount in.
That will be the amount of mesos in the code.

View Existing Codes:
A GM Can view the existing VALID codes. If a code has been user it will not show up on the page.

.:: How To ::.
How to add the script to FlareCMS.
Download and extract the script.
Copy the 4 Files and insert them in the file: FlareCMS > Scripts
Then open the file: FlareCMS > config.php
Scroll all the way down and you will see something like this:
Code:
$script[2]["title"] = "Fix Exp";
$script[2]["file"] = "fixexp.php";
$script[2]["page"] = "fixexp";
As you see it says: $script[2]
so we now add this under that:
Code:
$script[3]["title"] = "Activate Meso Code";
$script[3]["file"] = "amesoscode.php";
$script[3]["page"] = "aMesos";

$script[4]["title"] = " - Create Meso Code *GM Only*";
$script[4]["file"] = "mesoscode.php";
$script[4]["page"] = "cMesos";

$script[5]["title"] = " - View Existing Mesos Code *GM Only*";
$script[5]["file"] = "vmesoscode.php";
$script[5]["page"] = "vMesos";
If $script[3] already exists. U just change every number +1 (4 to 5, 5 to 6)
Now open the 3 scripts that you extracted and edit the the Database info.
Now add this to the mysql:

Code:
DROP TABLE IF EXISTS `mesoscode`;
CREATE TABLE `mesoscode` (
  `code` varchar(15) NOT NULL,
  `valid` int(11) NOT NULL default '1',
  `acc` varchar(13) default NULL,
  `amount` int(11) NOT NULL default '1',
  PRIMARY KEY  (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

it is now done!

That was my first release. Leave comment about it.. Thanks!

 
Last edited:
Skilled Illusionist
Loyal Member
Joined
Jun 23, 2008
Messages
324
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

How does mesos system works accually? and wads mesos system?
 
Junior Spellweaver
Joined
Jul 21, 2008
Messages
124
Reaction score
47
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Pictures of it please? This looks a lot like the one in the development

 
Junior Spellweaver
Joined
May 26, 2008
Messages
195
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Interesting.
Might be useful for servers who "sell" mesos as a donation reward?

Im quite interested in what other scripts you have implemented in FlareCMS as im currently testing my server and am planning to use the simple functionality of FlareCMS.
The only one i have is one gatherd by sathon, the login fix script, which in itself was actually broken and i had to fix the query to get it working.
 
Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

It is the one in the development xD lol im him
 
Supreme Arcanarch
Loyal Member
Joined
Jul 21, 2008
Messages
969
Reaction score
1
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

just a tip: not everyone can use rapidshare. Might wanna upload to more sites =)
 
Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

just a tip: not everyone can use rapidshare. Might wanna upload to more sites =)
o ok will do
 
Master Summoner
Joined
Apr 29, 2008
Messages
534
Reaction score
3
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Can you tell me what does the mesos system do? :p
 
Mother effin' clouds
Loyal Member
Joined
Apr 13, 2008
Messages
1,533
Reaction score
448
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Mesos System, i have something similiar to this, but its called Buy/Sell Items/Mesos :D i taken the idea from one of the thread in the dev section about maplestory market and buying npcs, etc :D but instead i used item selling, the admin can change the market price (default amount is buying for 50% of the real item's price) =] nice work on this :D originality.
Can you tell me what does the mesos system do? :p
Like generating NX Cash Coupans, but instead Mesos Coupan, upon correct coupan code it will give the mesos that is geenrated with the coupan by the admin :D read the description.
 
Junior Spellweaver
Joined
Jun 27, 2008
Messages
148
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Can you tell me what does the mesos system do? :p
From what I've seen, a GM makes a code for a player, gives it to the player, they use it on the site, it gives them mesos. o_O
 
Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Im working on the Post for the NX Code Version.. The link will be on this post too :p
 
Junior Spellweaver
Joined
May 26, 2008
Messages
195
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

That depends.. Do you like my Script :)?

Dude i like anything that can save me time.
And this will definatley save me time.
So yes i do like it. ;)
 
Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

I dono if its allowed.. Tell if if it isnt.. But - Bump -
 
Mother effin' clouds
Loyal Member
Joined
Apr 13, 2008
Messages
1,533
Reaction score
448
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

I dono if its allowed.. Tell if if it isnt.. But - Bump -
Just stop double posting and bumping, we all Ducking get the Ducking darn motherfucking point. And its not that interesting after all :D
 
Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

Just stop double posting and bumping, we all Ducking get the Ducking darn motherfucking point. And its not that interesting after all :D
Dubble posting -.-?
 
Back
Top