• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Blazarn Realmap 8.42 (REALEASE)

Update ! ?

Hello iam gona realease my ot i have been hosting it for over 1 month and some1 hacked my databas! had like 60+ players so the server aint so bad!

I Downloaded Zytarios Server And Fixed pretty Much in it!

CREDITS GOES TO
Ates
Zytarios Team
And Freak15 (me)


CryingDemson 0.3.4
HTML:
Citys
Thais
Venore
Ab'Dendriel
Kazzardon
Carlin
Liberty bay
Port hope
Goroma
Cormaya
Okel (Only For Vip Players!)
Edron
Ankrahmun
Darashia
Svargrond
Donate Island  (only For Vip Players)
Azeroth (only for vip players)
I dont Know if i forgott any..:P

*Quests Arenas*
Svargrond Arena
demon oak q
Desert q
Pits of inferno q
Inq q
Necromancer q
And more....

"systems"
Vip System!
Jail System!
Guild War System!
Bounty Hunter System

Speedyshare Download SERVER
cryingdamson3-gui841-2.rar



Speedyshare Download HTDOCS
htdocs.rar

;) and now in ur phpmyadmin u should Import this things!

Bounty Hunters
HTML:
CREATE TABLE IF NOT EXISTS `bounty_hunters` (
  `id` int(11) NOT NULL auto_increment,
  `fp_id` int(11) NOT NULL,
  `sp_id` int(11) NOT NULL,
  `k_id` int(11) NOT NULL,
  `added` int(15) NOT NULL,
  `prize` int(11) NOT NULL,
  `killed` int(11) NOT NULL,
  `kill_time` int(15) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=14 ;

And

War System
HTML:
CREATE TABLE IF NOT EXISTS `deaths_in_wars` (
  `guild_id` int(11) NOT NULL,
  `player_id` int(11) NOT NULL,
  `killer_guild` int(11) NOT NULL,
  `killer` int(11) NOT NULL,
  `date` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

And

Groups
HTML:
CREATE TABLE IF NOT EXISTS `groups` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL COMMENT 'group name',
  `flags` bigint(20) unsigned NOT NULL default '0',
  `customflags` bigint(20) unsigned NOT NULL default '0',
  `access` int(11) NOT NULL,
  `violationaccess` int(11) NOT NULL,
  `maxdepotitems` int(11) NOT NULL,
  `maxviplist` int(11) NOT NULL,
  `outfit` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Data i tabell `groups`
--

INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
(1, 'Player', 0, 0, 0, 0, 0, 0, 0),
(2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0),
(3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0),
(4, 'Gamemaster', 510024081247, 4189375, 3, 2, 4000, 200, 75),
(5, 'Community Manager', 546534563834, 4194303, 4, 3, 6000, 300, 266),
(6, 'God', 546534563834, 4194303, 5, 3, 8000, 400, 302);

and

Bug Tracker
HTML:
CREATE TABLE IF NOT EXISTS `z_bug_tracker` (
  `account` varchar(255) NOT NULL,
  `type` int(11) NOT NULL,
  `status` int(11) NOT NULL,
  `text` text NOT NULL,
  `id` int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `reply` int(11) NOT NULL,
  `who` int(11) NOT NULL,
  `uid` int(11) NOT NULL auto_increment,
  `tag` int(11) NOT NULL,
  PRIMARY KEY  (`uid`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;

And
Ot Communication
HTML:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ;

And

History Items

HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_item` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `offer_id` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ;

And

History Pacc
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_pacc` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `pacc_days` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;

And

History Unban
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_unban` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `pacc_days` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

And

Shop Offers
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_offer` (
  `id` int(11) NOT NULL auto_increment,
  `points` int(11) NOT NULL default '0',
  `itemid1` int(11) NOT NULL default '0',
  `count1` int(11) NOT NULL default '0',
  `itemid2` int(11) NOT NULL default '0',
  `count2` int(11) NOT NULL default '0',
  `offer_type` varchar(255) default NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=166 ;

--
-- Data i tabell `z_shop_offer`
--

INSERT INTO `z_shop_offer` (`id`, `points`, `itemid1`, `count1`, `itemid2`, `count2`, `offer_type`, `offer_description`, `offer_name`) VALUES
(1, 5, 0, 30, 0, 0, 'pacc', 'Buy 30 days of premium account for yourself or your friend!', '30 Days of PACC'),
(3, 6, 2160, 100, 0, 0, 'item', 'Buy 100 Crystal Coin', '100x Crystal Coin'),
(5, 10, 2173, 1, 1987, 8, 'container', 'Buy bag with 8 Amulet of loss and dont loose a shit!', '8x Amulet of Loss'),
(10, 10, 2358, 1, 0, 0, 'item', 'You see Donator Boots (Arm:15).\r\nIt weighs 1.00 oz.', '1 Donator Boots'),
(11, 10, 2408, 1, 0, 0, 'item', 'You see a Donator sword (Atk:70, Def:80).\r\nIt can only be wielded properly by knights of level 110 or higher.\r\nIt weighs 64.00 oz.\r\nStrong powers flow in this magic sword.', '1 Donator Sword'),
(12, 10, 5942, 1, 0, 0, 'item', 'You see a Donator Bolt ().\r\nIt can only be wielded properly by players of level 10 or higher.\r\nIt weighs 0.80 oz.\r\nMany mighty priests of Tibia have blessed This Bolt 80+ Atk.', '1 Donator Bolt'),
(13, 10, 6391, 1, 0, 0, 'item', 'You see a Donator shield (Def:80).\r\nIt weighs 3.20 oz.\r\nIt was crafted by the ancient order of the nightmare knights.', '1 Donator Shield'),
(14, 10, 8925, 1, 0, 0, 'item', 'You see a Donator axe (Atk:70, Def:75 +7).\r\nIt can only be wielded properly by players of level 130 or higher.\r\nIt weighs 1.00 oz.', '1 Donator Axe'),
(15, 10, 8927, 1, 0, 0, 'item', 'You see a Donator mace (Atk:70, Def:75 +10).\r\nIt can only be wielded properly by players of level 120 or higher.\r\nIt weighs 1.00 oz.', '1 Donator Mace'),
(19, 7, 6132, 1, 0, 0, 'item', 'You see soft boots that is brand-new.\r\nIt weighs 8.00 oz.', 'Soft Boots'),
(25, 10, 7410, 1, 0, 0, 'item', 'You see a Donator Wand ().\r\nIt can only be wielded properly by players of level 55 or higher.\r\nIt weighs 28.50 oz.\r\nThis wand has been blessed by mighty midgets', 'Donator Wand'),
(26, 12, 2474, 1, 0, 0, 'item', 'You see a Donator Helmet (Arm:12, speed +40).\r\nIt weighs 12.00 oz.\r\nIt is the Helmet of Midgets.', 'Donator helmet'),
(28, 10, 7499, 1, 0, 0, 'item', 'You see a Donator Rod ().\r\nIt can only be wielded properly by druids of level 150 or higher.\r\nIt weighs 28.50 oz.\r\nThis Rod has Been Blessed By Many Mighty Priests', 'Donator Rod'),
(78, 13, 2197, 1, 2000, 20, 'container', 'Buy 20x stone skin amulets', '20x Stone Skin Amulet'),
(85, 14, 9776, 0, 0, 0, 'item', 'You see a Donator Armor (Arm:20, magic level +1, protection death +19%).\r\nIt can only be wielded properly by knights of level 80 or higher.\r\nIt weighs 70.00 oz.', '1x Donator Armor'),
(99, 12, 9932, 1, 1990, 1, 'container', 'Buy 1x present and se what u get!', '1x present'),
(110, 5, 8890, 0, 0, 0, 'item', 'You see a robe of the underworld (Arm:12, protection holy -12%, death +12%).\r\nIt can only be wielded properly by sorcerers of level 100 or higher.\r\nIt weighs 19.00 oz.', '1x robe of the underworld'),
(115, 12, 9778, 0, 0, 0, 'item', 'buy 1x Donator mask (can Only be used by sorcers and druids)', '1x Donator mask'),
(120, 4, 2160, 50, 0, 0, 'item', '50x crystal coins!', '50x crystal coins'),
(125, 7, 8851, 0, 0, 0, 'item', 'You see a royal crossbow (Range:6, Atk +5, Hit% +3). It can only be wielded properly by paladins of level 130 or higher. It weighs 120.00 oz.', '1x royal crossbow'),
(145, 10, 0, 0, 0, 0, 'redskull', 'Remove Red Skull 10 points', 'Remove Red Skull'),
(22, 9, 0, 0, 0, 0, 'changename', 'Change Name!!', 'changename'),
(130, 11, 9932, 0, 0, 0, 'item', 'You see a firewalker boots (Arm:2, protection fire +90%) that has energy for 60 minutes left.\r\nIt can only be wielded properly by players of level 130 or higher.\r\nIt weighs 9.50 oz.\r\nWearing these boots reduces the damage gotten from fiery ground.', '1x Firewalker Boots'),
(135, 8, 8918, 0, 0, 0, 'item', 'You see a spellbook of dark mysteries (Def:16, magic level +3).\r\nIt can only be wielded properly by sorcerers and druids of level 80 or higher.\r\nIt weighs 28.50 oz.\r\nIt shows your spells and can also shield against attack when worn.', '1x spellbook of dark mysteries'),
(140, 1, 0, 0, 0, 0, 'item', 'Donate for nothing if u want should be Nice;)', 'Donate for nothing'),
(150, 14, 2469, 0, 0, 0, 'item', 'Under Construction!!!!!! So dont buy yet!', 'UNDER CONSTRUCTION!'),
(155, 2, 5953, 100, 0, 0, 'item', 'Buy some marijuana for deco in your house!', '100x marijuana'),
(160, 7, 5785, 0, 0, 0, 'item', 'Buy 15 Days Vip Account!', '15 Days Vip'),
(165, 20, 7491, 0, 0, 0, 'item', 'Buy Exp book!', '1x exp book');

There You Go If anything missing Please Write To me and tell whats missing!

Plz Update !!!! to many minor errors
 
Hello iam gona realease my ot i have been hosting it for over 1 month and some1 hacked my databas! had like 60+ players so the server aint so bad!

I Downloaded Zytarios Server And Fixed pretty Much in it!

CREDITS GOES TO
Ates
Zytarios Team
And Freak15 (me)


CryingDemson 0.3.4
HTML:
Citys
Thais
Venore
Ab'Dendriel
Kazzardon
Carlin
Liberty bay
Port hope
Goroma
Cormaya
Okel (Only For Vip Players!)
Edron
Ankrahmun
Darashia
Svargrond
Donate Island  (only For Vip Players)
Azeroth (only for vip players)
I dont Know if i forgott any..:P

*Quests Arenas*
Svargrond Arena
demon oak q
Desert q
Pits of inferno q
Inq q
Necromancer q
And more....

"systems"
Vip System!
Jail System!
Guild War System!
Bounty Hunter System

Speedyshare Download SERVER
cryingdamson3-gui841-2.rar



Speedyshare Download HTDOCS
htdocs.rar

;) and now in ur phpmyadmin u should Import this things!

Bounty Hunters
HTML:
CREATE TABLE IF NOT EXISTS `bounty_hunters` (
  `id` int(11) NOT NULL auto_increment,
  `fp_id` int(11) NOT NULL,
  `sp_id` int(11) NOT NULL,
  `k_id` int(11) NOT NULL,
  `added` int(15) NOT NULL,
  `prize` int(11) NOT NULL,
  `killed` int(11) NOT NULL,
  `kill_time` int(15) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=14 ;

And

War System
HTML:
CREATE TABLE IF NOT EXISTS `deaths_in_wars` (
  `guild_id` int(11) NOT NULL,
  `player_id` int(11) NOT NULL,
  `killer_guild` int(11) NOT NULL,
  `killer` int(11) NOT NULL,
  `date` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

And

Groups
HTML:
CREATE TABLE IF NOT EXISTS `groups` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL COMMENT 'group name',
  `flags` bigint(20) unsigned NOT NULL default '0',
  `customflags` bigint(20) unsigned NOT NULL default '0',
  `access` int(11) NOT NULL,
  `violationaccess` int(11) NOT NULL,
  `maxdepotitems` int(11) NOT NULL,
  `maxviplist` int(11) NOT NULL,
  `outfit` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Data i tabell `groups`
--

INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
(1, 'Player', 0, 0, 0, 0, 0, 0, 0),
(2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0),
(3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0),
(4, 'Gamemaster', 510024081247, 4189375, 3, 2, 4000, 200, 75),
(5, 'Community Manager', 546534563834, 4194303, 4, 3, 6000, 300, 266),
(6, 'God', 546534563834, 4194303, 5, 3, 8000, 400, 302);

and

Bug Tracker
HTML:
CREATE TABLE IF NOT EXISTS `z_bug_tracker` (
  `account` varchar(255) NOT NULL,
  `type` int(11) NOT NULL,
  `status` int(11) NOT NULL,
  `text` text NOT NULL,
  `id` int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `reply` int(11) NOT NULL,
  `who` int(11) NOT NULL,
  `uid` int(11) NOT NULL auto_increment,
  `tag` int(11) NOT NULL,
  PRIMARY KEY  (`uid`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;

And
Ot Communication
HTML:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ;

And

History Items

HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_item` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `offer_id` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ;

And

History Pacc
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_pacc` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `pacc_days` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;

And

History Unban
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_history_unban` (
  `id` int(11) NOT NULL auto_increment,
  `to_name` varchar(255) NOT NULL default '0',
  `to_account` int(11) NOT NULL default '0',
  `from_nick` varchar(255) NOT NULL,
  `from_account` int(11) NOT NULL default '0',
  `price` int(11) NOT NULL default '0',
  `pacc_days` int(11) NOT NULL default '0',
  `trans_state` varchar(255) NOT NULL,
  `trans_start` int(11) NOT NULL default '0',
  `trans_real` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

And

Shop Offers
HTML:
CREATE TABLE IF NOT EXISTS `z_shop_offer` (
  `id` int(11) NOT NULL auto_increment,
  `points` int(11) NOT NULL default '0',
  `itemid1` int(11) NOT NULL default '0',
  `count1` int(11) NOT NULL default '0',
  `itemid2` int(11) NOT NULL default '0',
  `count2` int(11) NOT NULL default '0',
  `offer_type` varchar(255) default NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=166 ;

--
-- Data i tabell `z_shop_offer`
--

INSERT INTO `z_shop_offer` (`id`, `points`, `itemid1`, `count1`, `itemid2`, `count2`, `offer_type`, `offer_description`, `offer_name`) VALUES
(1, 5, 0, 30, 0, 0, 'pacc', 'Buy 30 days of premium account for yourself or your friend!', '30 Days of PACC'),
(3, 6, 2160, 100, 0, 0, 'item', 'Buy 100 Crystal Coin', '100x Crystal Coin'),
(5, 10, 2173, 1, 1987, 8, 'container', 'Buy bag with 8 Amulet of loss and dont loose a shit!', '8x Amulet of Loss'),
(10, 10, 2358, 1, 0, 0, 'item', 'You see Donator Boots (Arm:15).\r\nIt weighs 1.00 oz.', '1 Donator Boots'),
(11, 10, 2408, 1, 0, 0, 'item', 'You see a Donator sword (Atk:70, Def:80).\r\nIt can only be wielded properly by knights of level 110 or higher.\r\nIt weighs 64.00 oz.\r\nStrong powers flow in this magic sword.', '1 Donator Sword'),
(12, 10, 5942, 1, 0, 0, 'item', 'You see a Donator Bolt ().\r\nIt can only be wielded properly by players of level 10 or higher.\r\nIt weighs 0.80 oz.\r\nMany mighty priests of Tibia have blessed This Bolt 80+ Atk.', '1 Donator Bolt'),
(13, 10, 6391, 1, 0, 0, 'item', 'You see a Donator shield (Def:80).\r\nIt weighs 3.20 oz.\r\nIt was crafted by the ancient order of the nightmare knights.', '1 Donator Shield'),
(14, 10, 8925, 1, 0, 0, 'item', 'You see a Donator axe (Atk:70, Def:75 +7).\r\nIt can only be wielded properly by players of level 130 or higher.\r\nIt weighs 1.00 oz.', '1 Donator Axe'),
(15, 10, 8927, 1, 0, 0, 'item', 'You see a Donator mace (Atk:70, Def:75 +10).\r\nIt can only be wielded properly by players of level 120 or higher.\r\nIt weighs 1.00 oz.', '1 Donator Mace'),
(19, 7, 6132, 1, 0, 0, 'item', 'You see soft boots that is brand-new.\r\nIt weighs 8.00 oz.', 'Soft Boots'),
(25, 10, 7410, 1, 0, 0, 'item', 'You see a Donator Wand ().\r\nIt can only be wielded properly by players of level 55 or higher.\r\nIt weighs 28.50 oz.\r\nThis wand has been blessed by mighty midgets', 'Donator Wand'),
(26, 12, 2474, 1, 0, 0, 'item', 'You see a Donator Helmet (Arm:12, speed +40).\r\nIt weighs 12.00 oz.\r\nIt is the Helmet of Midgets.', 'Donator helmet'),
(28, 10, 7499, 1, 0, 0, 'item', 'You see a Donator Rod ().\r\nIt can only be wielded properly by druids of level 150 or higher.\r\nIt weighs 28.50 oz.\r\nThis Rod has Been Blessed By Many Mighty Priests', 'Donator Rod'),
(78, 13, 2197, 1, 2000, 20, 'container', 'Buy 20x stone skin amulets', '20x Stone Skin Amulet'),
(85, 14, 9776, 0, 0, 0, 'item', 'You see a Donator Armor (Arm:20, magic level +1, protection death +19%).\r\nIt can only be wielded properly by knights of level 80 or higher.\r\nIt weighs 70.00 oz.', '1x Donator Armor'),
(99, 12, 9932, 1, 1990, 1, 'container', 'Buy 1x present and se what u get!', '1x present'),
(110, 5, 8890, 0, 0, 0, 'item', 'You see a robe of the underworld (Arm:12, protection holy -12%, death +12%).\r\nIt can only be wielded properly by sorcerers of level 100 or higher.\r\nIt weighs 19.00 oz.', '1x robe of the underworld'),
(115, 12, 9778, 0, 0, 0, 'item', 'buy 1x Donator mask (can Only be used by sorcers and druids)', '1x Donator mask'),
(120, 4, 2160, 50, 0, 0, 'item', '50x crystal coins!', '50x crystal coins'),
(125, 7, 8851, 0, 0, 0, 'item', 'You see a royal crossbow (Range:6, Atk +5, Hit% +3). It can only be wielded properly by paladins of level 130 or higher. It weighs 120.00 oz.', '1x royal crossbow'),
(145, 10, 0, 0, 0, 0, 'redskull', 'Remove Red Skull 10 points', 'Remove Red Skull'),
(22, 9, 0, 0, 0, 0, 'changename', 'Change Name!!', 'changename'),
(130, 11, 9932, 0, 0, 0, 'item', 'You see a firewalker boots (Arm:2, protection fire +90%) that has energy for 60 minutes left.\r\nIt can only be wielded properly by players of level 130 or higher.\r\nIt weighs 9.50 oz.\r\nWearing these boots reduces the damage gotten from fiery ground.', '1x Firewalker Boots'),
(135, 8, 8918, 0, 0, 0, 'item', 'You see a spellbook of dark mysteries (Def:16, magic level +3).\r\nIt can only be wielded properly by sorcerers and druids of level 80 or higher.\r\nIt weighs 28.50 oz.\r\nIt shows your spells and can also shield against attack when worn.', '1x spellbook of dark mysteries'),
(140, 1, 0, 0, 0, 0, 'item', 'Donate for nothing if u want should be Nice;)', 'Donate for nothing'),
(150, 14, 2469, 0, 0, 0, 'item', 'Under Construction!!!!!! So dont buy yet!', 'UNDER CONSTRUCTION!'),
(155, 2, 5953, 100, 0, 0, 'item', 'Buy some marijuana for deco in your house!', '100x marijuana'),
(160, 7, 5785, 0, 0, 0, 'item', 'Buy 15 Days Vip Account!', '15 Days Vip'),
(165, 20, 7491, 0, 0, 0, 'item', 'Buy Exp book!', '1x exp book');

There You Go If anything missing Please Write To me and tell whats missing!

Where can i find accmaker tutorial for this server ?
or accmaker link. :D
 
Sorry i dont like it, it has mysql bugged on onlinetime5,onlinetime4, etc even with your htdocs etc, i think it's a nice map but it is quite bugged.
 
How can i go to donation island? For example in thais i can't go there from ship. Help me!
 
Um... fcking edit -.- the svargrond arena isn't complete. U can take only present -.- Repair it, or tell how we can repair it.
 
How can i go to donation island? For example in thais i can't go there from ship. Help me!


Donate island on the top of the boat you need a vip medalj first named "medal of honour" and right click on it and wipss your VIP
and than u can walk trough the door in thais boat and go to the top and talk to captain blazarn!
 
Back
Top