MikeScript]NX Code System - FlareCMS - MikeScript V1

Newbie Spellweaver
Joined
May 10, 2007
Messages
34
Reaction score
0
.:: MikeScript - NX Code System - For FlareCMS ::.
Hello,
I am now releasing the NX Code System of MikeScript.

.:: DOWNLOAD ::.
Rapidshare -
or
Rapidshare -

or
Official Site Direct Download -

.:: What Does It Do ::.
A GM can create a NX Code wich a user can activate in the cash shop. The GM Inserts the Amount the NX Code will give and then the system will generate a code.

.:: How To ::.
Download the file and extract it.
Now copy the files to your: FlareCMS > Scripts Folder...
Now Open: FlareCMS > config.php
Scroll down and you will see Something like this:
Code:
$script[2]["title"] = "Exp Fix"; 
$script[2]["file"] = "fixexp.php";
$script[2]["page"] = "fixexp";
Add under that:
Code:
$script[3]["title"] = " - View Existing NXCode's *GM Only*";
$script[3]["file"] = "vnxcode.php";
$script[3]["page"] = "viewnx";

$script[4]["title"] = " - Create NXCode *GM Only*";
$script[4]["file"] = "nxcode.php";
$script[4]["page"] = "nxcode";
if $script[3] Already exists. Change the number to 4 if that exists, Then change it to 5.

I Asume you already have the NX Code db and stuff but if not. Then add this to Your SQL:
Code:
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for nxcode
-- ----------------------------
DROP TABLE IF EXISTS `nxcode`;
CREATE TABLE `nxcode` (
  `code` varchar(15) NOT NULL,
  `valid` int(11) NOT NULL default '1',
  `user` varchar(13) default NULL,
  `type` int(11) NOT NULL default '0',
  `item` int(11) NOT NULL default '10000',
  PRIMARY KEY  (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records 
-- ----------------------------
INSERT INTO `nxcode` VALUES ('710778C56D21651', '1', '', '0', '1');
And Also:
Code:
ALTER TABLE `accounts` ADD COLUMN `nxCash` int(11);
ALTER TABLE `accounts` ADD COLUMN `mPoints` int(11);
ALTER TABLE `accounts` ADD COLUMN `gTokens` int(11);
Now go to the extracted files and edit the DB Data.
Now your done. Good Luck :)


 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Lol np :) I wana become big.. Like lots of ppl will know MikeScript.. so ima make a lot of scripts..
Any suggestions?
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Yeah.. Im also making something new awsome..
Ill tell you if you want :)
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Well i could.. But i would have to do Alot of work. I wana make my own CMS so it would update alot.. But i cant design.. So i need a designer who can also script CSS b4 i even start
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Lol, no offense, this is like changing characters to accounts and changing the table names to nxcash something instead of mesos, mesos to nxcash.
Nothing that big :D you should just have 1 thread :O anyways its okay like this, nice work i suppose.
NOTE: you dont have to have 2 seperate tables for Nxcode and mesoscode, you can combine them and add a column like type, type 1 = nxcash, type 2= mesos. =] thats how i did mine last time :D
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Lol, no offense, this is like changing characters to accounts and changing the table names to nxcash something instead of mesos, mesos to nxcash.
Nothing that big :D you should just have 1 thread :O anyways its okay like this, nice work i suppose.
NOTE: you dont have to have 2 seperate tables for Nxcode and mesoscode, you can combine them and add a column like type, type 1 = nxcash, type 2= mesos. =] thats how i did mine last time :D
yeah i knw.. that might be done in Further Versions
But ATM im working on a new project
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

I dono if its allowed.. Tell if if it isnt.. But - Bump -
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Dumb Question. Where do the player put in the NX Code? ._. i havent played GMS for 2 years. Usualy you put it on the website.
 
Re: [Release][MikeScript]NX Code System - FlareCMS - MikeScript V1

Dumb Question. Where do the player put in the NX Code? ._. i havent played GMS for 2 years. Usualy you put it on the website.
In Game.. You need a Cash shop local host.. Then they go in Cashshop and click on coupon.. Then they put the code in and done.
 
Back