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!

PlaySro Full Website [PHP]

Newbie Spellweaver
Joined
Nov 21, 2012
Messages
13
Reaction score
0
omg just make a own website. All this days you wasted you could make your own. And its really noobish to copy from others work that they wasted so much time for. And belive me it feels better if you make everything your self it feels so much better.
 
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
omg just make a own website. All this days you wasted you could make your own. And its really noobish to copy from others work that they wasted so much time for. And belive me it feels better if you make everything your self it feels so much better.
Sorry, i'm noob. I can't code my own website(!) and stealing others work(!) And yes, i am not the first guy who coded e-pin system for vSro or i don't have web item mall since srevolution.
ROFL
 
Newbie Spellweaver
Joined
Nov 21, 2012
Messages
13
Reaction score
0
Sorry, i'm noob. I can't code my own website(!) and stealing others work(!) And yes, i am not the first guy who coded e-pin system for vSro or i don't have web item mall since srevolution.
ROFL

Im working on one right now when finish i will upload it here for you and make it for your noob game.
 
Newbie Spellweaver
Joined
Jul 13, 2012
Messages
87
Reaction score
13
web no found in inetpub ?

Need Help have error
Captura - PlaySro Full Website [PHP] - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited by a moderator:
Elite Diviner
Joined
May 15, 2009
Messages
403
Reaction score
414
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Nov 30, 2012
Messages
7
Reaction score
0
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums

query gives errors
 
Initiate Mage
Joined
Jul 5, 2014
Messages
4
Reaction score
0
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums
Please help not work :S
 
Back
Top