CREATE TABLE IF NOT EXISTS `arenaprzedmioty` ( `uid` int(11) NOT NULL, `itemID` int(11) NOT NULL, KEY `uid` (`uid`,`itemID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO `arenaprzedmioty` (`uid`, `itemID`) VALUES (1, 4), (4, 20), (7, 1), (7, 1), (7, 1), (7, 1), (7, 1), (7, 1), (13, 3), (43, 15); CREATE TABLE IF NOT EXISTS `arenaprzedmiotyInfo` ( `item` int(11) NOT NULL AUTO_INCREMENT, `type` int(11) NOT NULL DEFAULT '7', `name` text NOT NULL, `gold` int(11) NOT NULL, `attack` int(11) NOT NULL, `defence` int(11) NOT NULL, `lifeMax` int(11) NOT NULL, `dMin` int(11) NOT NULL, `dMax` int(11) NOT NULL, PRIMARY KEY (`item`), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=39 ; INSERT INTO `arenaprzedmiotyInfo` (`item`, `type`, `name`, `gold`, `attack`, `defence`, `lifeMax`, `dMin`, `dMax`) VALUES (1, 0, 'Jabłko', 10, 0, 0, 10, 0, 0), (2, 0, 'Truskawka', 15, 0, 0, 20, 0, 0), (3, 0, 'Gruszka', 20, 0, 0, 35, 0, 0), (4, 0, 'Banan', 50, 0, 0, 150, 0, 0), (5, 0, 'Ser', 100, 0, 0, 310, 0, 0), (6, 0, 'Ryba', 150, 0, 0, 600, 0, 0), (7, 0, 'Chleb', 200, 0, 0, 1000, 0, 0), (8, 0, 'Mięso', 500, 0, 0, 3000, 0, 0), (9, 1, 'Miecz', 250, 10, 0, 0, 3, 5), (10, 1, 'Włócznia', 240, 7, 5, 0, 2, 4), (11, 1, 'Młot', 350, 0, 0, 0, 5, 7), (12, 1, 'Morningstar', 500, 0, 0, 0, 8, 11), (13, 1, 'Topór', 400, 5, 0, 0, 3, 8), (14, 1, 'Długi miecz', 600, 15, 0, 0, 6, 9), (15, 1, 'Katana', 1000, 25, 0, 0, 9, 13), (16, 1, 'Lanca', 700, 10, 15, 0, 6, 9), (17, 1, 'Tasak', 1100, 0, 0, 0, 11, 18), (18, 1, 'Wielki topór ', 1500, 0, 0, 0, 16, 20), (19, 1, 'Topór barbarzyńcy', 2500, 0, 0, 0, 25, 31), (20, 2, 'Puklerz', 300, 0, 15, 0, 0, 0), (21, 2, 'Mała tarcza', 500, 0, 20, 0, 0, 0), (22, 2, 'Stalowa tarcza', 1240, 0, 50, 0, 0, 0), (23, 2, 'Tarcza rycerska', 2765, 0, 75, 0, 0, 0), (24, 3, 'Kaszliet', 200, 0, 5, 0, 0, 0), (25, 3, 'Hełm', 785, 0, 15, 0, 0, 0), (26, 3, 'Hełm wojownika', 1000, 0, 44, 0, 0, 0), (27, 4, 'Koszula', 500, 0, 15, 0, 0, 0), (28, 4, 'Skórzana koszula', 750, 0, 25, 0, 0, 0), (29, 4, 'Zbroja', 1755, 0, 50, 0, 0, 0), (30, 4, 'Zbroja płytowa', 3485, 0, 100, 0, 0, 0), (31, 4, 'Pełna zbroja płytowa', 6785, 0, 125, 25, 0, 0), (32, 5, 'Buty', 50, 2, 1, 0, 0, 0), (33, 5, 'Wzmocnione buty', 250, 4, 2, 0, 0, 0), (34, 6, 'Pierścień ochrony', 5000, 0, 50, 50, 0, 0), (35, 6, 'Pierścień mocy', 5000, 50, 0, 0, 10, 15), (36, 6, 'Pierścień ducha', 3000, 0, 0, 100, 0, 0), (37, 7, 'Medalion Pradawnych', 13575, 25, 25, 50, 5, 15), (38, 7, 'Gwiazda Północy', 12355, 0, 75, 100, 0, 0); CREATE TABLE IF NOT EXISTS `enemy` ( `enemy` int(11) NOT NULL AUTO_INCREMENT, `username` text NOT NULL, `attack` int(11) NOT NULL, `defence` int(11) NOT NULL, `lifeMax` int(11) NOT NULL, `dMin` int(11) NOT NULL, `dMax` int(11) NOT NULL, `exp` int(11) NOT NULL, `gold` int(11) NOT NULL, PRIMARY KEY (`enemy`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; INSERT INTO `enemy` (`enemy`, `username`, `attack`, `defence`, `lifeMax`, `dMin`, `dMax`, `exp`, `gold`) VALUES (1, 'Pszczoła', 70, 20, 30, 3, 4, 1, 2), (2, 'Żaba', 80, 25, 50, 3, 7, 2, 3), (3, 'Pająk', 100, 30, 60, 4, 7, 3, 10), (4, 'Centaur', 110, 70, 30, 6, 9, 4, 1), (5, 'Harpia', 120, 100, 120, 11, 15, 6, 6), (6, 'Wojownik', 150, 120, 150, 25, 50, 20, 30), (7, 'Meduza', 170, 150, 200, 25, 50, 30, 50), (8, 'Drzewiec', 125, 250, 500, 30, 60, 50, 100), (9, 'Olbrzym', 250, 150, 500, 50, 75, 100, 500), (10, 'Czerwony Smok', 300, 300, 1000, 100, 125, 500, 1000); CREATE TABLE IF NOT EXISTS `enemyLocations` ( `locationID` int(11) NOT NULL, `enemyID` int(11) NOT NULL, KEY `locationID` (`locationID`,`enemyID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO `enemyLocations` (`locationID`, `enemyID`) VALUES (1, 1), (1, 1), (1, 1), (1, 1), (1, 2), (1, 2), (2, 1), (2, 1), (2, 2), (2, 2), (2, 3), (2, 3), (3, 3), (3, 3), (3, 4), (3, 4), (3, 5), (3, 6), (4, 3), (4, 6), (4, 7), (4, 8), (5, 7), (5, 8), (5, 9), (5, 10); CREATE TABLE IF NOT EXISTS `locations` ( `location` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `lvl` int(11) NOT NULL, PRIMARY KEY (`location`), KEY `lvl` (`lvl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; INSERT INTO `locations` (`location`, `name`, `lvl`) VALUES (1, 'Wichorowe wzgórza', 1), (2, 'Przełęcz Umarlaków', 3), (3, 'Pustkowia', 5), (4, 'Dolina Cieni', 7), (5, 'Skaliste góry', 10); CREATE TABLE IF NOT EXISTS `raporty` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL, `tekst` text NOT NULL, `czas` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `uid` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; ALTER TABLE `game_users` ADD `resetBonus` VARCHAR( 16 ) NOT NULL , ADD `points` INT NOT NULL DEFAULT '0', ADD `arena` INT NOT NULL DEFAULT '0', ADD `exp` INT NOT NULL DEFAULT '0', ADD `expLvl` int(11) NOT NULL DEFAULT '100', ADD `lvl` int(11) NOT NULL DEFAULT '1', ADD `skills` int(11) NOT NULL DEFAULT '5', ADD `gold` int(11) NOT NULL DEFAULT '1000', ADD `attack` int(11) NOT NULL DEFAULT '1', ADD `defence` int(11) NOT NULL DEFAULT '1', ADD `life` int(11) NOT NULL DEFAULT '100', ADD `lifeMax` int(11) NOT NULL DEFAULT '100', ADD `dMin` int(11) NOT NULL DEFAULT '1', ADD `dMax` int(11) NOT NULL DEFAULT '3', ADD `AP` int(11) NOT NULL DEFAULT '100', ADD `lastAP` int(11) NOT NULL DEFAULT '0', ADD `weapon` int(11) NOT NULL DEFAULT '0', ADD `shield` int(11) NOT NULL DEFAULT '0', ADD `helm` int(11) NOT NULL DEFAULT '0', ADD `armour` int(11) NOT NULL DEFAULT '0', ADD `legs` int(11) NOT NULL DEFAULT '0', ADD `ring` int(11) NOT NULL DEFAULT '0', ADD `necklage` int(11) NOT NULL DEFAULT '0', ADD `Bonus` int(11) NOT NULL DEFAULT '100'; INSERT INTO `game_templates` (`tid`, `title`, `template`, `sid`, `version`, `status`, `dateline`) VALUES (589, 'gra_gosc', '\r\n{$lang->welcome_current_time}\r\n{$lang->welcome_guest} \r\n (\r\n \r\n {$lang->welcome_login}\r\n \r\n — \r\n \r\n {$lang->welcome_register}\r\n \r\n )\r\n', -1, '1604', '', 1316373783), (590, 'gra', '\r\n\r\n{$podstrona}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ntytul\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n

tu np reklama cpm

\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n
\r\n
\r\n
\r\n \r\n

{$content}
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n

\r\n
{$welcomeblock}
\r\n{$logout}\r\n \r\n

Reklama

\r\n
\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n\r\n
\r\n\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n\r\n', -1, '1604', '', 1316508023), (591, 'gra_user', '{$lang->welcome_back}\r\n{$lang->welcome_logout})
', -1, '1604', '', 1316373805), (592, 'header_welcomeblock_guest', '\r\n\r\n {$lang->welcome_guest} ({$lang->welcome_login}{$lang->welcome_register})', 1, '1604', '', 1316376160), (593, 'header_welcomeblock_member', '{$lang->welcome_back}\r\n — {$lang->welcome_logout}', 1, '1604', '', 1316376304), (594, 'member_login', '\r\n\r\nDragon Quest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ntytul\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logowanie

\r\n
\r\n {$inline_errors}\r\n{$member_loggedin_notice}\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n{$captcha}\r\n
{$lang->username}
{$lang->password}
{$lang->pw_note}

\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n{$lang->lostpw_note}\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n

Reklama

\r\n
\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n
\r\n\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n', 1, '1604', '', 1316424507), (595, 'member_lostpw', '\r\n\r\n{$podstrona}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ntytul\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n

Reset hasła

\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
{$lang->lost_pw_form}
{$lang->email_address}
\r\n
\r\n
\r\n\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n

Reklama

\r\n
\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n
\r\n\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n', 1, '1604', '', 1316424329), (596, 'member_register', '\r\n\r\nDragon Quest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ntytul\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n

Text

\r\n
\r\n
\r\n{$regerrors}\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\nRejestracja\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n
Hasło:Potwierdź hasło:
\r\n
\r\n
\r\n{$requiredfields}\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n

Reklama

\r\n
\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n
\r\n\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n', 1, '1604', '', 1316423951), (597, 'member_register_agreement', '\r\n\r\nDragon Quest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ntytul\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n

Rejestracja

\r\n\r\n
\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Dragon Quest - Regulamin gry i forum

\r\n

Zabrania się publikowania treści prowokacyjnych, obraźliwych, erotycznych, rasistowskich, faszystowskich itp. Zabrania się również pisania zbędnych, nie wnoszących nic do tematu wypowiedzi.\r\n

\r\n

Rejestrując się oświadczasz, że masz świadomość iż NIE WOLNO Ci pisać postów łamiących te zasady.\r\n

\r\n

Jeśli złamiesz któreś z tych postanowień, narazisz się na możliwość usunięcia konta lub zbanowania używanego przez Ciebie adresu IP.\r\n

\r\n

Żadne z Twoich danych podanych podczas rejestracji na forum nie będą wykorzystywane w celach niezwiązanych z działalnością forum ani przekazywane osobom trzecim.\r\n

\r\n

Kontynuując rejestrację oświadczasz, że zgadzasz się ze wszystkimi wymienionymi powyżej postanowieniami oraz innymi regułami ustalonymi przez administratorów. W celu poznania pełnych reguł obowiązujących w grze i na forum, skontaktuj się z administratorem.

\r\n
\r\n\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n

Reklama

\r\n
\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n
\r\n\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n', 1, '1604', '', 1316424067), (598, 'header', '
\r\n \r\n \r\n \r\n
\r\n
\r\n {$pm_notice}\r\n {$bannedwarning}\r\n {$bbclosedwarning}\r\n {$unreadreports}\r\n {$pending_joinrequests}\r\n

\r\n
\r\n \r\n
', 1, '1604', '', 1316508101), (599, 'footer', '
\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n
', 1, '1604', '', 1316508148); ALTER TABLE `game_users` ADD `lastFight` INT NOT NULL , ADD INDEX ( `lastFight` ); ALTER TABLE `raporty` CHANGE `czas` `data` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;