Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - isnortmana

1
ok im working on my mmo and im having problems I want to put in item storage but I read the script and I still don't get how to use it or make it where only guild members can open it also I don't know how to use global switches/variables for auction house  if anyone could give me a detailed tut on how to do these things I will give credits in my game (best I can offer)

EDIT: I am using rpg-xp
2
Quote from: Blizzard on April 22, 2013, 02:17:14 am
Whoops, I didn't change that text.
Yes, this requires RMX-OS 1.3. I put it up because of the people who are beta testing RMX-OS 1.3. You will have to wait another week or two before RMX-OS 1.3 is out.

It doesn't replace my user logger, but it does replace the online list and login/logout notifications that Wizerd made (I think he made both).


ah I see well cant wait to use either
3
RMXP Script Database / Re: [XP] RMX-OS
April 21, 2013, 10:52:19 pm
I don't know what it was (obvious) but the problem is fixed I haven't ran into any other problems and I've tested repeatedly ty for all the help getting the server up

EDIT: ok I ran into one problem I put my ip in HOST= in the config file and in the rmxos script/options but when I try to connect I get  "The requested address is not valid in its context.-bind<2> i even cleared my database then made a new one but didn't fix this not sure if i used the wrong ip but it was the ip shown at (whatismyip) this is the only issue i have ran into since i got my server back up any help would be greatly appreciated
4
so I guess this replaces rmxos-logger/onlinelist

EDIT:i got a lot of problems after trying this it said remote restart requires a higher version of rmxos (I don't even use remote restart)
5
ah thank you
6
Troubleshooting / Help / RMX-OS/Multiple Extensions
April 19, 2013, 03:06:54 pm
okay im using rmx-os and I can get one extension to work but when I try to do two or more my server opens for 1 second then closes im sure its how im typing them into the config file

extension['babsrmxos.rb''secondextension.rb'] I don't know how im supposed to separate them any help would be greatly appreciated
7
RMXP Script Database / Re: [XP] RMX-OS
April 19, 2013, 03:01:55 pm
*sigh* well I had this setup a few times but whenever I shut my computer off for the night the next day I cant get back on the server I have check to see if MySQL is running in services but when I try to start it up I get an error saying it has stopped unexpectedly any help would be greatly appreciated I really don't want to delete everything again
8
Troubleshooting / Help / Re: Rmxos/mysql
April 19, 2013, 02:20:48 am
thank you I really appreciate it
9
Troubleshooting / Help / Rmxos/mysql
April 19, 2013, 12:57:32 am
I recently deleted everything for rmxos because the server would no linger let me on and I couldn't find a solution but when I tried to download the same MySQL I couldn't find it so im looking for a link to MySQL 5.1 32 bit essentials (msi installer) I cant get any other version to work with rmxos 
10
RMXP Script Database / Re: [XP] RMX-OS
April 18, 2013, 04:55:48 am
sorry I forgot to came back and edit I don't know what my problem was but I got the extensions working(slowly learning) almost flipped out though had to wipe database to get blizz abs to work wasn't hard to setup second time ty for reply btw
11
RMXP Script Database / Re: [XP] RMX-OS
April 18, 2013, 03:31:30 am
Having few issues with extensions I copy and paste into a .rb file in the extension folder but when I type the extension name into the config file the server says it (any extension) couldn't be initialized only problem ive ran into

ALSO: does rmxos support Blacksmith shop?

sorry I know I get annoying with the questions
12
RMXP Script Database / Re: [XP] RMX-OS
April 17, 2013, 01:15:55 pm
XD got it game is up now ill leave you alone for awhile  thank you blizz
13
RMXP Script Database / Re: [XP] RMX-OS
April 17, 2013, 07:57:56 am
Im using heidi(sql)
14
RMXP Script Database / Re: [XP] RMX-OS
April 16, 2013, 05:59:37 pm
it says no database selected im using Heidi an honestly its confusing I had it set up but got a syntax error at line 1 idk if Heidi is good for this but other ones I found were just trials

EDIT: I have toyed with the database a bit more I tried using my ip but says cant connect trhough it and when I use the host ip it gives me a syntax error at line 1 and so far I havnt found anything useful on how to resolve this error

-- 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;

-- Saved Data
CREATE TABLE `save_data` (
   `user_id` INT(10) UNSIGNED NOT NULL,
   `data_name` VARCHAR(255) NOT NULL,
   `data_value` TEXT NOT NULL, PRIMARY KEY (`user_id`, `data_name`), FOREIGN KEY (`user_id`) REFERENCES users(`user_id`) ON
DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; COMMIT;
mysql
15
RMXP Script Database / Re: [XP] RMX-OS
April 16, 2013, 03:26:25 pm
Quote from: Blizzard on April 16, 2013, 02:52:23 pm
Alright, let's take this from the beginning.

1. SQL_HOST should stay 127.0.0.1 (or localhost) if the MySQL server is on the same PC. Don't change the port either.
2. Make sure that you created a root account with a password and that you see SQL_USERNAME and SQL_PASSWORD.
3. Make sure that your MySQL service is running. Usually after installation you will get a window to start it. You can check if it's running in Control Panel->Administrative Tools->Services. If it's not running, turn it on. You also might want to set it to start up automatically on your PC if you need it.

Check these things first, then we'll take it from there.

okay all this is set up and MySQL is running(set to automatic)
16
RMXP Script Database / Re: [XP] RMX-OS
April 16, 2013, 11:35:51 am
okay im am having issues with this I follow the manual step by step I have my database setup ive donloaded ruby everything I need but when I run the .rb file the command prompt is running but says (my computers name) is not allowed to connect to server then terminates repeatedly I don't know what I did wrong

EDIT:i changed the host back to default and I chaned the sql host to my ip and I no longer get this user isn't allowed to connect i get a new error just says unexpected was going to post image but not sure how......

EDIT: i changed the ips around i used the default ip for the rmx-os config file and my ip for my management software Heidi something like that it trys to load but fails i can see my server when i go in the game but says offline  

i think i found problem -_- i went into MySQL command typed in password did \r to restart server says there isn't one specified/connected ive read manual again and again but i still don't know how to connect a server to mysql
17
im currently working on my first project and as you can tell from the title of the topic it is an mmorpg i have looked for a script that allows people in an mmo to duel or designate an area as pvp so you can just attack people in the said area  any help would be greatly appreciated
18
RMXP Script Database / Re: [XP] RMX-OS
April 16, 2013, 12:57:21 am
how do events(non scripted) work with the game being online (I don't know how to script) and is there some kind of auction house/mailing system that can work with this?


EDIT:i assume progress is saved on the server
19
ok ive recently downloaded blizz abs to make my game better but when I try to change the skill type from direct/shockwave either my character doesn't attack at all or the game crashes I am wanting to use shooting and homing I am also having problems with the weapon types the only thing that works is sword I don't know if I need a specific animation or what


I am using RMXP/Blizz abs 2.84 any help would be greatly appreciated