- 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:
The system is has the following:
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:
As you see it says: $script[2]
so we now add this under that:
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:
it is now done!
That was my first release. Leave comment about it.. Thanks!
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*
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";
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";
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: