[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:
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

How does mesos system works accually? and wads mesos system?
 
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

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

 
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.
 
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

It is the one in the development xD lol im him
 
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.
 
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
 
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
 
Re: [Release][MikeScript]MikeScript - Mesos System - FlareCMS - FIRST EVER - V1

I dono if its allowed.. Tell if if it isnt.. But - Bump -
 
Back