[Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

Page 9 of 28 FirstFirst 123456789101112131415161719 ... LastLast
Results 121 to 135 of 415
  1. #121
    Valued Member Markz88 is offline
    MemberRank
    Jan 2007 Join Date
    149Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Quote Originally Posted by sandaru View Post
    How to change ip in client? I make it to play Lan with some friends
    RPG Maker XP -> Script Editor -> (RMX-OS) Options and you'll find SERVERS.push(['Mew', '127.0.0.1', 54269]

  2. #122
    Apprentice Tanuki is offline
    MemberRank
    Jan 2013 Join Date
    13Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Hey Markz,
    could you fix the Weakness/Resistance or make a tutorial on how to fix that?

  3. #123
    Valued Member Markz88 is offline
    MemberRank
    Jan 2007 Join Date
    149Posts

    R: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    I'll release soon the last version of Pokemon Essentials with online features.. I'm preparing all... Say goodbye to nox files.

    Inviato dal mio GT-I9300 con Tapatalk 2

  4. #124
    Apprentice aegisrox is offline
    MemberRank
    Nov 2012 Join Date
    11Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Markz welcome back!! I missed you =D
    Thanks for your hard work ^_^

    Aegis

  5. #125
    Valued Member Markz88 is offline
    MemberRank
    Jan 2007 Join Date
    149Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Changelogs:
    Code:
    Pokemon Essentials v11 + Online features.
    DOWNLOAD

  6. #126
    Apprentice iLuvMyStylz is offline
    MemberRank
    Aug 2010 Join Date
    23Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Code:
    [Err] 1005 - Can't create table 'rmxosdb.users' (errno: 150)
    [Err] -- SQL Database for RMX-OS
    -- by Blizzard
    
    START TRANSACTION;
    
    -- these two are used to create the database and can be ommited in case the database already exists
    CREATE DATABASE IF NOT EXISTS `rmxosdb` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    USE `rmxosdb`;
    
    DROP TABLE IF EXISTS `save_data`;
    DROP TABLE IF EXISTS `inbox`;
    DROP TABLE IF EXISTS `buddy_list`;
    DROP TABLE IF EXISTS `user_data`;
    DROP TABLE IF EXISTS `guilds`;
    DROP TABLE IF EXISTS `ips`;
    DROP TABLE IF EXISTS `users`;
    
    -- Registered Users
    
    CREATE TABLE `users` (
    	`user_id` int(10) unsigned NOT NULL auto_increment,
    	`username` varchar(32) NOT NULL UNIQUE,
    	`password` varchar(11) NOT NULL,
    	`usergroup` int(10) NOT NULL default 0,
    	`banned` tinyint(1) NOT NULL default 0,
    	PRIMARY KEY (`user_id`)
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- IPs
    
    CREATE TABLE `ips` (
    	`user_id` int(10) unsigned NOT NULL,
    	`ip` varchar(15) NOT NULL,
    	PRIMARY KEY (`user_id`, `ip`),
    	FOREIGN KEY (`user_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Guilds
    
    CREATE TABLE `guilds` (
    	`guild_id` int(10) unsigned NOT NULL auto_increment,
    	`leader_id` int(10) unsigned NOT NULL UNIQUE,
    	`guildname` varchar(32) NOT NULL UNIQUE,
    	`password` varchar(11) NOT NULL,
    	PRIMARY KEY (`guild_id`),
    	FOREIGN KEY (`leader_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Special User Data
    
    CREATE TABLE `user_data` (
    	`user_id` int(10) unsigned NOT NULL,
    	`notrade` tinyint(1) NOT NULL default 0,
    	`lastlogin` DATETIME NOT NULL,
    	`guild_id` int(10) unsigned default NULL,
    	PRIMARY KEY (`user_id`),
    	FOREIGN KEY (`user_id`) REFERENCES users(`user_id`) ON DELETE CASCADE,
    	FOREIGN KEY (`guild_id`) REFERENCES guilds(`guild_id`) ON DELETE SET NULL
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Buddy List
    
    CREATE TABLE `buddy_list` (
    	`user1_id` int(10) unsigned NOT NULL,
    	`user2_id` int(10) unsigned NOT NULL,
    	PRIMARY KEY (`user1_id`, `user2_id`),
    	FOREIGN KEY (`user1_id`) REFERENCES users(`user_id`) ON DELETE CASCADE,
    	FOREIGN KEY (`user2_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- PM Inbox Data
    
    CREATE TABLE `inbox` (
    	`pm_id` int(10) unsigned NOT NULL auto_increment,
    	`recipient_id` int(10) unsigned NOT NULL,
    	`sendername` varchar(32) NOT NULL,
    	`senddate` DATETIME NOT NULL,
    	`message` text NOT NULL,
    	`unread` tinyint(1) NOT NULL default 1,
    	PRIMARY KEY (`pm_id`),
    	FOREIGN KEY (`recipient_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    [Msg] Finished - Unsuccessfully
    Any help?

  7. #127
    Valued Member Markz88 is offline
    MemberRank
    Jan 2007 Join Date
    149Posts

    R: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Quote Originally Posted by iLuvMyStylz View Post
    Code:
    [Err] 1005 - Can't create table 'rmxosdb.users' (errno: 150)
    [Err] -- SQL Database for RMX-OS
    -- by Blizzard
    
    START TRANSACTION;
    
    -- these two are used to create the database and can be ommited in case the database already exists
    CREATE DATABASE IF NOT EXISTS `rmxosdb` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    USE `rmxosdb`;
    
    DROP TABLE IF EXISTS `save_data`;
    DROP TABLE IF EXISTS `inbox`;
    DROP TABLE IF EXISTS `buddy_list`;
    DROP TABLE IF EXISTS `user_data`;
    DROP TABLE IF EXISTS `guilds`;
    DROP TABLE IF EXISTS `ips`;
    DROP TABLE IF EXISTS `users`;
    
    -- Registered Users
    
    CREATE TABLE `users` (
    `user_id` int(10) unsigned NOT NULL auto_increment,
    `username` varchar(32) NOT NULL UNIQUE,
    `password` varchar(11) NOT NULL,
    `usergroup` int(10) NOT NULL default 0,
    `banned` tinyint(1) NOT NULL default 0,
    PRIMARY KEY (`user_id`)
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- IPs
    
    CREATE TABLE `ips` (
    `user_id` int(10) unsigned NOT NULL,
    `ip` varchar(15) NOT NULL,
    PRIMARY KEY (`user_id`, `ip`),
    FOREIGN KEY (`user_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Guilds
    
    CREATE TABLE `guilds` (
    `guild_id` int(10) unsigned NOT NULL auto_increment,
    `leader_id` int(10) unsigned NOT NULL UNIQUE,
    `guildname` varchar(32) NOT NULL UNIQUE,
    `password` varchar(11) NOT NULL,
    PRIMARY KEY (`guild_id`),
    FOREIGN KEY (`leader_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Special User Data
    
    CREATE TABLE `user_data` (
    `user_id` int(10) unsigned NOT NULL,
    `notrade` tinyint(1) NOT NULL default 0,
    `lastlogin` DATETIME NOT NULL,
    `guild_id` int(10) unsigned default NULL,
    PRIMARY KEY (`user_id`),
    FOREIGN KEY (`user_id`) REFERENCES users(`user_id`) ON DELETE CASCADE,
    FOREIGN KEY (`guild_id`) REFERENCES guilds(`guild_id`) ON DELETE SET NULL
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- Buddy List
    
    CREATE TABLE `buddy_list` (
    `user1_id` int(10) unsigned NOT NULL,
    `user2_id` int(10) unsigned NOT NULL,
    PRIMARY KEY (`user1_id`, `user2_id`),
    FOREIGN KEY (`user1_id`) REFERENCES users(`user_id`) ON DELETE CASCADE,
    FOREIGN KEY (`user2_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    
    -- PM Inbox Data
    
    CREATE TABLE `inbox` (
    `pm_id` int(10) unsigned NOT NULL auto_increment,
    `recipient_id` int(10) unsigned NOT NULL,
    `sendername` varchar(32) NOT NULL,
    `senddate` DATETIME NOT NULL,
    `message` text NOT NULL,
    `unread` tinyint(1) NOT NULL default 1,
    PRIMARY KEY (`pm_id`),
    FOREIGN KEY (`recipient_id`) REFERENCES users(`user_id`) ON DELETE CASCADE
    ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
    [Msg] Finished - Unsuccessfully
    Any help?
    What is your database name? Call it "rmxosdb" or change USE "rmxosdb" with USE "your database name" in the sql code

    Inviato dal mio GT-I9300 con Tapatalk 2

  8. #128
    Apprentice Tanuki is offline
    MemberRank
    Jan 2013 Join Date
    13Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    By default there is a /trade command in RMX-OS right?
    It is not working? Markz couldn't you make it work? :D

  9. #129
    Novice chikosvieir is offline
    MemberRank
    May 2012 Join Date
    1Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    How I change the IP of the client? Please i need to know Dx

  10. #130
    Proficient Member PokeOrb is offline
    MemberRank
    Nov 2010 Join Date
    191Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Quote Originally Posted by chikosvieir View Post
    How I change the IP of the client? Please i need to know Dx
    Quote Originally Posted by Markz88 View Post
    RPG Maker XP -> Script Editor -> (RMX-OS) Options and you'll find SERVERS.push(['Mew', '127.0.0.1', 54269]
    In the future, try to read through the thread first to see if an answer has already posted to your question.

  11. #131
    Apprentice gonxfreaks is offline
    MemberRank
    Oct 2010 Join Date
    21Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Quote Originally Posted by Markz88 View Post
    Changelogs:
    Code:
    Pokemon Essentials v11 + Online features.
    DOWNLOAD
    hello, does the pvp System and trade system??

  12. #132
    Proficient Member PokeOrb is offline
    MemberRank
    Nov 2010 Join Date
    191Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Quote Originally Posted by gonxfreaks View Post
    hello, does the pvp System and trade system??
    Trade system does not work. I don't think there's a PvP system either.

    That release is the latest version of Pokemon Essentials and RMX-OS integrated, so it's more up to date than the previous version.

  13. #133
    Apprentice gonxfreaks is offline
    MemberRank
    Oct 2010 Join Date
    21Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    mmm, I was thinking we could do something in the pokemon center, as in the original game, but not how to make it work ...

    regards

  14. #134
    Best Commu NA Cure is offline
    MemberRank
    Sep 2007 Join Date
    That way .. →Location
    1,247Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    Hey, I just had the honor of trying this source with the developers hosting..
    Its looking extremely nice and I'd recommend keeping an eye on revisions for the source.

    Good job Markz and his team.

  15. #135
    Novice Joey Myerscough is offline
    MemberRank
    Feb 2013 Join Date
    Торонто,Location
    2Posts

    Re: [Release] Pokemon Markz88 MMO STARTER KIT [RPG Maker XP]

    I was wondering if anyone had a better tutorial for setting up a server? I'm unsure what to do with Ruby, or MySQL. It'd be great for someone to help me with a more in-depth tutorial.



Advertisement