http://i51.tinypic.com/24bklza.png
IGOT THIS ERROR WHEN I RUN BUNNY
Printable View
http://i51.tinypic.com/24bklza.png
IGOT THIS ERROR WHEN I RUN BUNNY
Config.xml
Code:<?xml version="1.0" encoding="utf-8" ?>
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Database>
<Host>TOR-PC\SQLEXPRESS</Host>
<DatabaseName>GunzDB</DatabaseName>
<WindowsAuth>0</WindowsAuth>
<User>sa</User>
<Pass>PW</Pass>
</Database>
<Tcp>
<Ip>127.0.0.1</Ip>
<Port>6000</Port>
<Backlog>4</Backlog>
<ReceiveBuffer>8192</ReceiveBuffer>
<SendBuffer>8192</SendBuffer>
</Tcp>
<Udp>
<Ip>127.0.0.1</Ip>
<Port>7777</Port>
<Buffer>1024</Buffer>
</Udp>
<Locator>
<Ip>127.0.0.1</Ip>
<Port>8900</Port>
</Locator>
<Agent>
<Ip>127.0.0.1</Ip>
<TCPPort>5100</TCPPort>
<UDPPort>7778</UDPPort>
</Agent>
<Server>
<Id>1</Id>
<Capacity>1500</Capacity>
<!-- Mode can be: match, clan, quest, developer -->
<Mode>Quest</Mode>
<Survival>1</Survival>
<DuelTourney>1</DuelTourney>
<Name>Bunny Emulator</Name>
<UseMD5>0</UseMD5>
<AutoRegistration>1</AutoRegistration>
</Server>
<Client>
<!-- 2007: 56, 2008: 57, IJJI: 58 -->
<Version>58</Version>
<UseCRC>0</UseCRC>
<Filelist>0<!-- 4081868661 --></Filelist>
</Client>
<Ping>
<Delay>15</Delay>
<Timeout>0</Timeout>
</Ping>
<Character>
<StartingBounty>1000</StartingBounty>
<MaxItems>30</MaxItems>
<EquipSameItems>0</EquipSameItems>
</Character>
<Items>
<MaxWeight>300</MaxWeight>
<UseBounty>0</UseBounty>
</Items>
</Configuration>
sorry to intrude on the topic
but it does help me?
thanks guys problem solve
thanks for the config
I'm using the runnable that the phoenix posted
k if this second problem solve i will close this thread
how do i convert mssql to mysql or where do i get the mysql db of gunz
Sad part is, Search button is your friend. Exiled Hero released a DB that works with MYSQL, But I'm not sure it will run with Bunny and Hare, And the fact there was never a locator that could run with MySQL
@ForeanXz thanks for the info
guys can you share your mysql gunz work withh bunny and hare.
the release of Exiled Hero is dead can u please upload quickly and give me a tutorial on how to setup the MySql i don't even know how to convert mssql to mysql because every i convert it, at the mysql config is wrong i don't know why so please help me guys.
thank you!
edit..
now i know how to setup the mysql the only problem is i don't have mysql db of gunz T_T anyone share your mysql db please.
ok will open this thread if i have more error that to all people who helping me.
New Error :
Code:[4/14/2011 5:03:14 PM] - Main - 634383973944887422
[4/14/2011 5:03:14 PM] - Initialize - Error Initializing DB: Cannot open database "GunzDB" requested by the login. The login failed.
Login failed for user 'wtf-PC\wtf'.
[4/14/2011 5:03:14 PM] - Main - Failed to connect to database!
Press Enter to exit!
Code:/*
Bunny & Hare GunZDB V2.1
Updated: 9/9/2010 6:23:13 AM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for account
-- ----------------------------
CREATE TABLE `account` (
`aid` int(11) NOT NULL AUTO_INCREMENT,
`userid` varchar(25) NOT NULL,
`password` varchar(64) NOT NULL,
`regdate` date DEFAULT NULL,
`name` varchar(25) NOT NULL,
`email` varchar(128) NOT NULL,
`access` smallint(6) DEFAULT '0',
`premium` smallint(6) DEFAULT '0',
`registerip` varchar(25) DEFAULT NULL,
`lastloginip` varchar(25) DEFAULT NULL,
`lastconndate` datetime DEFAULT NULL,
`age` smallint(6) DEFAULT NULL,
`sex` tinyint(4) DEFAULT NULL,
`address` varchar(64) DEFAULT NULL,
`zip` int(11) DEFAULT NULL,
`online` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`aid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for character
-- ----------------------------
CREATE TABLE `character` (
`cid` int(11) NOT NULL AUTO_INCREMENT,
`aid` int(11) NOT NULL,
`name` varchar(24) NOT NULL,
`level` int(11) NOT NULL DEFAULT '1',
`sex` tinyint(4) NOT NULL,
`charnum` tinyint(4) NOT NULL DEFAULT '0',
`hair` tinyint(4) NOT NULL,
`face` tinyint(4) NOT NULL,
`XP` int(11) NOT NULL DEFAULT '0',
`BP` int(11) NOT NULL DEFAULT '0',
`head_slot` int(11) DEFAULT NULL,
`chest_slot` int(11) DEFAULT NULL,
`hands_slot` int(11) DEFAULT NULL,
`legs_slot` int(11) DEFAULT NULL,
`feet_slot` int(11) DEFAULT NULL,
`fingerl_slot` int(11) DEFAULT NULL,
`fingerr_slot` int(11) DEFAULT NULL,
`melee_slot` int(11) DEFAULT NULL,
`primary_slot` int(11) DEFAULT NULL,
`secondary_slot` int(11) DEFAULT NULL,
`custom1_slot` int(11) DEFAULT NULL,
`custom2_slot` int(11) DEFAULT NULL,
`regdate` datetime DEFAULT NULL,
`playtime` int(11) DEFAULT NULL,
`killcount` int(11) DEFAULT '0',
`deathcount` int(11) DEFAULT '0',
`online` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`cid`),
KEY `ChFkeyaccount` (`aid`),
CONSTRAINT `ChFkeyaccount` FOREIGN KEY (`aid`) REFERENCES `account` (`aid`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for characteritem
-- ----------------------------
CREATE TABLE `characteritem` (
`ciid` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL,
`itemid` int(11) NOT NULL,
`regdate` datetime NOT NULL,
`rentdate` datetime DEFAULT NULL,
`renthourperiod` int(11) DEFAULT NULL,
`cnt` int(11) DEFAULT NULL,
PRIMARY KEY (`ciid`),
KEY `cid` (`cid`),
CONSTRAINT `FKLOL` FOREIGN KEY (`cid`) REFERENCES `character` (`cid`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for clan
-- ----------------------------
CREATE TABLE `clan` (
`clid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(24) NOT NULL,
`exp` int(11) DEFAULT '0',
`level` int(11) DEFAULT '0',
`point` int(11) DEFAULT '0',
`mastercid` int(11) NOT NULL,
`wins` int(11) DEFAULT '0',
`losses` int(11) DEFAULT '0',
`draws` int(11) DEFAULT '0',
`totalranking` int(11) DEFAULT '0',
`lastmonthrank` int(11) DEFAULT NULL,
`emblemurl` varchar(256) DEFAULT NULL,
PRIMARY KEY (`clid`),
KEY `CTFKey` (`mastercid`),
CONSTRAINT `CTFKey` FOREIGN KEY (`mastercid`) REFERENCES `character` (`cid`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for clanmember
-- ----------------------------
CREATE TABLE `clanmember` (
`cmid` int(11) NOT NULL AUTO_INCREMENT,
`clid` int(11) NOT NULL,
`cid` int(11) NOT NULL,
`grade` tinyint(4) NOT NULL DEFAULT '9',
`regdate` datetime NOT NULL,
`contpoint` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`cmid`),
KEY `CFkeymember` (`cid`),
KEY `CFkeymemberclan` (`clid`),
CONSTRAINT `CFkeymember` FOREIGN KEY (`cid`) REFERENCES `character` (`cid`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `CFkeymemberclan` FOREIGN KEY (`clid`) REFERENCES `clan` (`clid`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
anyone convert this in to mssql please .
this was the last problem
i need the converted DB because if i didn't convert it the bunny will not work.