Browser MMO Video #20
-
jonnieblunt
- Posts: 3
- Joined: Wed May 05, 2010 7:32 am
Re: Video #20
It seems this is the last video poasted, are you planning on putting up more Halls?
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video #20
yes i will have some more up shortly, it is getting harder and harder for me these days get them out.
Re: Video #20
Umm how do you download the tables onto you wamp server? I downloaded the work thus far to make sure i got a working copy for when i begin to crate my own game and start testing new codes but it wont let me transfer the tables onto wamp.
- Jackolantern
- Posts: 10891
- Joined: Wed Jul 01, 2009 11:00 pm
Re: Video #20
Ok it says there is a error:
Error
SQL query:
--
-- Database: `tutorial`
--
-- --------------------------------------------------------
--
-- Table structure for table `armor`
--
CREATE TABLE IF NOT EXISTS `armor` (
`id` int( 9 ) NOT NULL AUTO_INCREMENT ,
`name` varchar( 31 ) NOT NULL ,
`rating` smallint( 4 ) NOT NULL ,
`level` smallint( 4 ) NOT NULL ,
`class` varchar( 21 ) NOT NULL ,
`price` int( 9 ) NOT NULL ,
`location` varchar( 21 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =5;
MySQL said: Documentation
#1046 - No database selected
Error
SQL query:
--
-- Database: `tutorial`
--
-- --------------------------------------------------------
--
-- Table structure for table `armor`
--
CREATE TABLE IF NOT EXISTS `armor` (
`id` int( 9 ) NOT NULL AUTO_INCREMENT ,
`name` varchar( 31 ) NOT NULL ,
`rating` smallint( 4 ) NOT NULL ,
`level` smallint( 4 ) NOT NULL ,
`class` varchar( 21 ) NOT NULL ,
`price` int( 9 ) NOT NULL ,
`location` varchar( 21 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =5;
MySQL said: Documentation
#1046 - No database selected
Re: Video #20
did you actually create the database named ' tutorial' and then select it as a destination for the import?
Re: Video #20
Halls In you're item cost percentage code you forgot the ' in ['price'] i don't know if you aware of that.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Video #20
yeah there are a couple errors in the video 20 code. Havent had time to fix.
Re: Video #20
Yah there pretty easy to fix, i just wanted to make sure you were aware of them so you could make a note or something.