Re: [HELP] v83 EricMS Source
Re: [HELP] v83 EricMS Source
1. Why are you using HeliosMS bats?
2. It got stuck at "Connecting..." which means it failed to connect to the database, it should show world/channel information being loaded.
Re: [HELP] v83 EricMS Source
http://up415.siz.co.il/up2/ktgdnkhnzzmd.png
i try with heliosMS Bats , its give me this with EricMS Bats to.
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
http://i.imgur.com/ozC5c4p.png
Works fine for me. Make sure you setup the database properly and you have v83 XMLs loaded. Any errors originally caught will stop you from getting passed 'Connecting...". Directly after 'Connecting...' occurs (end of LoginServer), it begins to call new ChannelServers. If your database is wrong (which it is, it requires a custom table for the Monster Rush event) then it won't startup.
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
Eric
http://i.imgur.com/ozC5c4p.png
Works fine for me. Make sure you setup the database properly and you have v83 XMLs loaded. Any errors originally caught will stop you from getting passed 'Connecting...". Directly after 'Connecting...' occurs (end of LoginServer), it begins to call new ChannelServers. If your database is wrong (which it is, it requires a custom table for the Monster Rush event) then it won't startup.
I tried to re-compile, DIST moved to JAVA, I have XML V83 , the database of MoopleDEV,
I think missing some data in ChanelServer and in World Server ..
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
the database of MoopleDEV,
This source as anti-moople. If you're using a moople database and not changing everything like you're supposed to, then you will never get it to start. Just remove the newer things if you have to, ChannelServer.run is your big hint. The very beginning has a prepared statement, check if those tables and columns exist and if not, remove that code so that your source will load. I lost my SQL but I can at least re-add tables to get it to launch...
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
Eric
This source as anti-moople. If you're using a moople database and not changing everything like you're supposed to, then you will never get it to start. Just remove the newer things if you have to, ChannelServer.run is your big hint. The very beginning has a prepared statement, check if those tables and columns exist and if not, remove that code so that your source will load. I lost my SQL but I can at least re-add tables to get it to launch...
Sorry I got MapleBlade used in SQL,
Source I use all my work in the BATS,
I think there is something missing or not written in Net.Channel and Net.World
You can see in Source check
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
Sorry I got MapleBlade used in SQL,
Source I use all my work in the BATS,
I think there is something missing or not written in Net.Channel and Net.World
You can see in Source check
In your database, do you have a table called mrush?
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
Eric
In your database, do you have a table called mrush?
edit:
now i add this to my datebase:
Quote:
DROP TABLE IF EXISTS `mrush`;
CREATE TABLE `mrush` (
`mesos` bigint(8) unsigned NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`mesos`)
) ENGINE=InnoDB AUTO_INCREMENT=9223372036854775808 DEFAULT CHARSET=latin1;
and its work bats , but i cant to create character why?
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
edit:
now i add this to my datebase:
and its work bats , but i cant to create character why?
That's one thing you were missing in your SQL. You're missing a whole lot more in the `character` table. Make sure to reference loadCharFromDB and saveCharToDB to add all of the variables necessary.
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
Eric
That's one thing you were missing in your SQL. You're missing a whole lot more in the `character` table. Make sure to reference loadCharFromDB and saveCharToDB to add all of the variables necessary.
i add all from loadCharFromDB to table character , but i dont find saveCharToDB ,
and i get this if i try to create char :
http://up415.siz.co.il/up3/mz5igmvnwkjq.png
Re: [HELP] v83 EricMS Source
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
but i dont find saveCharToDB
search INSERT or preparedstatement
Re: [HELP] v83 EricMS Source
Quote:
Originally Posted by
dolev159
please help
my mistake, i meant saveToDB not saveCharToDB. It's been a while since I've used this, lol. and as @eshays said, if you search 'INSERT' enough, you'll find it.