[Release] The Book of the Wise menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 72
  1. #1
    Claiver's Avatar Member
    Reputation
    138
    Join Date
    Mar 2009
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] The Book of the Wise

    ===| The Book of the Wise |===
    ===| VERSION 1.4 |===

    ---| INTRODUCTION |----------------------------------------------------------------------------------------------------------------------------------
    Thanks for visiting my thread. It has been a month ago ever since I started with LUA, and my creations/experments seem to be appreciated. It is for that very reason why I have spent quite some time converting the whole script in a customizable, configurable script for you! (Yes, everything was scripted without a single configuration option, go figure ).
    The Book of the Wise is an item containing different 'features', which will be added based on the player's level! I have not yet seen this an item of this kind, and thus I have decided to release this item. The item is scripted in LUA.
    The item SQL and LUA can be found at the very bottom of the thread.
    I have also added the NPC which sells the required reagents, and the book itself.

    ---| CURRENT FEATURES |----------------------------------------------------------------------------------------------------------------------------------
    • [+] Highly Configurable, userfriendly script, with descriptions to clarify what each setting does.
    • [+] The Book automatically adds more 'Chapters' based on the user's level.
    • [+] Allowing to randomly buff the player, at the cost of a reagent. (Reagent cost may be disabled.)
    • [+] Allowing the user to mount via the chapter. Mounting is configurable in the settings, and also scales with level.
    • [+] Teleporting to different locations at the cost of a 'Rune of Teleportation'. Teleporting to Dalaran or Shattrath is set to cost no reagent by default. (Reagent cost may be disabled)
    • [+] Allowing the user to learn spells at the cost of a Token. The cost may be disabled or changed to a custom item, if you desire.
    • [+] The ability to summon NPCs at your location at the cost of a reagent. (Reagent cost may be disabled aswell)
    • [+] Advanced Reagent checks. Will display a BroadCastMessage for the user, may he not have the reagent.
    • [+] Random buffs: The script will randomly pick a positive or negative buff for the player. Positive buffs will do no harm, negative buffs include but are not limited to: Decrease HP to 5%, kill the player, Get stuffed high up in the air!
    • [+] Additional Chapter system: Player may purchase 'Addition Chapters' to expand their book with chapters. An example chapter is the 'Additional Chapter: Qiraji Battletank' which will replace the mounting feature with an instant Qiraji Battle Tank!


    ---| SCREENSHOTS |----------------------------------------------------------------------------------------------------------------------------------

    (The Bottom two pictures: Notice how many chapters are availabe at level 10, and 22. You see more chapters have been automatically added to the Book!

    ---| TUTORIAL(S) |----------------------------------------------------------------------------------------------------------------------------------
    ---| LUA: DOWNLOAD |----------------------------------------------------------------------------------------------------------------------------------
    ---| SQL|----------------------------------------------------------------------------------------------------------------------------------
    Code:
    /* ================================================================================ =============
    NPC'S
    ================================================================================ ==============*/
    
    DELETE FROM creature_names WHERE entry = 103035;
    insert into `creature_names`
    (`entry`, `name`, `subname`, `info_str`, `Flags1`, `type`, `family`, `rank`, `unk4`, `spelldataid`, `male_displayid`, `female_displayid`, `male_displayid2`, `female_displayid2`, `unknown_float1`, `unknown_float2`, `civilian`, `leader`)
    values
    (103035, 'Distributor of Magical Books', 'Book Supplies', '', 0, 7, 0, 1, 0, 0, 27999, 0, 0, 0, 1, 1, NULL, 0);
    
    DELETE FROM creature_names WHERE entry = 103036;
    insert into `creature_names`
    (`entry`, `name`, `subname`, `info_str`, `Flags1`, `type`, `family`, `rank`, `unk4`, `spelldataid`, `male_displayid`, `female_displayid`, `male_displayid2`, `female_displayid2`, `unknown_float1`, `unknown_float2`, `civilian`, `leader`)
    values
    (103036, 'Summoned Distributor of Magical Books', 'Book Supplies', '', 0, 6, 0, 1, 0, 0, 27999, 0, 0, 0, 1, 1, NULL, 0);
    
    DELETE FROM creature_proto WHERE entry = 103035;
    insert into `creature_proto` (`entry`, `minlevel`, `maxlevel`, `faction`, `minhealth`, `maxhealth`, `mana`, `scale`, `npcflags`, `attacktime`, `attacktype`, `mindamage`, `maxdamage`, `can_ranged`, `rangedattacktime`, `rangedmindamage`, `rangedmaxdamage`, `respawntime`, `armor`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `combat_reach`, `bounding_radius`, `auras`, `boss`, `money`, `invisibility_type`, `death_state`, `walk_speed`, `run_speed`, `fly_speed`, `extra_a9_flags`, `spell1`, `spell2`, `spell3`, `spell4`, `spell_flags`, `modImmunities`)
    values (103035, 71 , 71 , 35 , 39852 , 39852 , 2342 , 2 , 4227 , 1242 , 0 , 3457 , 34573 , 0 , 0 , 0 , 0 , 1000 , 56745 , 2323464 , 2323464 , 2323464 , 2323464 , 2323464 , 2323464 , 2, 1, '0', 0, 0, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    DELETE FROM creature_proto WHERE entry = 103036;
    insert into `creature_proto` (`entry`, `minlevel`, `maxlevel`, `faction`, `minhealth`, `maxhealth`, `mana`, `scale`, `npcflags`, `attacktime`, `attacktype`, `mindamage`, `maxdamage`, `can_ranged`, `rangedattacktime`, `rangedmindamage`, `rangedmaxdamage`, `respawntime`, `armor`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `combat_reach`, `bounding_radius`, `auras`, `boss`, `money`, `invisibility_type`, `death_state`, `walk_speed`, `run_speed`, `fly_speed`, `extra_a9_flags`, `spell1`, `spell2`, `spell3`, `spell4`, `spell_flags`, `modImmunities`)
    values (103036, 71, 71, 35, 39852, 39852, 2342, 1, 4227, 1242, 0, 3457, 34573, 0, 0, 0, 0, 1000 , 56745 , 2323464 , 2323464 , 2323464 , 2323464 , 2323464 , 2323464 , 2, 1, '0', 0, 0, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    /* ================================================================================ =============
    ITEMS
    ================================================================================ ==============
    -- ******************************** --
    -- ********* REAGENTS ********** --
    -- ******************************** --*/
    DELETE FROM items WHERE entry = 24475;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (24475, 15, 1, -1, 'Lesser Stone of Restoration', '', '', '', 18519, 1, 0, 750000, 0, 0, -1, -1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 21223;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (21223, 15, 1, -1, 'Greater Stone of Restoration', '', '', '', 33543, 1, 0, 1500000, 0, 0, -1, -1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 4787;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (4787, 15, 1, -1, 'Imbued Soul Shard', '', '', '', 22927, 2, 0, 450000, 250000, 0, -1, -1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 3989;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (3989, 15, 1, -1, 'Wooden Rune of Blessing', '', '', '', 18472, 2, 0, 250000, 150000, 0, -1, -1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    /*-- ******************************** --
    -- ********* ADDITIONAL CHAPTERS ********** --
    -- ******************************** -- */
    DELETE FROM items WHERE entry = 18226;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (18226, 10, 0, -1, 'Additional Chapter: Qiraji Battle Tank', '', '', '', 18010, 7, 2048, 125750000, 0, 0, 262143, 32767, 213, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, 'Will add an extra chapter to \"Book of the Wise\" and \"Lesser Book of Wisdom\", allowing you to ride an Qiraji Battle Tank. This is a very fast mount.', 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 29571;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (29571, 10, 0, -1, 'Additional Chapter: Warden of Minor Healing', '', '', '', 9319, 7, 2048, 49750000, 0, 0, 262143, 32767, 213, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, 'Will add an extra chapter to \"Book of the Wise\", allowing you to instantly heal yourself up to 50% of your health. Reagent: 1x Lesser Stone of Restoration.', 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 24223;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (24223, 10, 0, -1, 'Additional Chapter: Warden of Major Healing', '', '', '', 18010, 7, 2048, 89750000, 0, 0, 262143, 32767, 213, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, 'Will add an extra chapter to \"Book of the Wise\", allowing you to instantly heal yourself up to 90% of your health. Reagent: 1x Greater Stone of Restoration.', 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    DELETE FROM items WHERE entry = 21222;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `itemstatscount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScaledStatsDistributionId`, `ScaledStatsDistributionFlags`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`, `existingduration`, `ItemLimitCategoryId`)
    VALUES
    (21222, 10, 0, -1, 'Token of Ensemblity', '', '', '', 33543, 4, 2048, 0, 75000, 0, 262143, 32767, 213, 60, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 0, 0, 0, -1, 0, -1, 1, 'The Token shines and feel empowered with wealth and advancement.', 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0);
    
    /* -- ******************************** --
    -- ********* THE BOOK ********** --
    -- ******************************** -- */
    DELETE FROM items WHERE entry = 24282;
    INSERT INTO items
    (`entry`, `class`, `subclass`, `field4`, `name1`, `name2`, `name3`, `name4`, `displayid`, `quality`, `flags`, `buyprice`, `sellprice`, `inventorytype`, `allowableclass`, `allowablerace`, `itemlevel`, `requiredlevel`, `RequiredSkill`, `RequiredSkillRank`, `RequiredSkillSubRank`, `RequiredPlayerRank1`, `RequiredPlayerRank2`, `RequiredFaction`, `RequiredFactionStanding`, `Unique`, `maxcount`, `ContainerSlots`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `dmg_min3`, `dmg_max3`, `dmg_type3`, `dmg_min4`, `dmg_max4`, `dmg_type4`, `dmg_min5`, `dmg_max5`, `dmg_type5`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `range`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `page_id`, `page_language`, `page_material`, `quest_id`, `lock_id`, `lock_material`, `sheathID`, `randomprop`, `unk203_1`, `block`, `itemset`, `MaxDurability`, `ZoneNameID`, `mapid`, `bagfamily`, `TotemCategory`, `socket_color_1`, `unk201_3`, `socket_color_2`, `unk201_5`, `socket_color_3`, `unk201_7`, `socket_bonus`, `GemProperties`, `ReqDisenchantSkill`, `unk2`)
    VALUES
    (24282, 15, 0, -1, 'Book of the Wise', '', '', '', 1588, 7, 0, 150000000, 0, 0, -1, -1, 100, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1500, 0, 0, 35517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The cover shines with a soft, yellow light. The Book is filled with knowledge. Chapters are automatically added when you advance in level! Right-click to open the Book of the Wise.', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, -1, 0);
    
    /* ================================================================================ =============
    VENDOR
    ================================================================================ ============== */
    DELETE FROM `vendors` WHERE `entry` IN (103035);
    INSERT INTO `vendors` (`entry`,`item`,`amount`, `max_amount`) VALUES
    ('103035','18226','1','-1'),
    ('103035','24282','1','-1'),
    ('103035','29571','1','-1'),
    ('103035','24223','1','-1'),
    ('103035','24475','1','-1'),
    ('103035','21223','1','-1'),
    ('103035','17031','1','-1'),
    ('103035','3989','1','-1'),
    ('103035','4787','1','-1');
    
    DELETE FROM `vendors` WHERE `entry` IN (103036);
    INSERT INTO `vendors` (`entry`,`item`,`amount`, `max_amount`) VALUES
    ('103036','18226','1','-1'),
    ('103036','24282','1','-1'),
    ('103036','29571','1','-1'),
    ('103036','24223','1','-1'),
    ('103036','24475','1','-1'),
    ('103036','21223','1','-1'),
    ('103036','3989','1','-1'),
    LEGEND [not yet needed for anything yet!]:
    RED = EntryID & Name
    PURPLE = ItemQuality (1: White, 2: Green, 3: Blue, 4: Epic, 7: Bind on Account)
    YELLOW = ItemDescription
    Green = Comment, Does not affect your .SQL query.
    SQL WARNING!
    Please note the following: For the sake of correct DisplayID's I have used existing EntryID's (all of Grey item quality) which had a rather low dropchance. I have replaced them with my custom items. If you do not wish to have the grey items deleted, please edit the EntryIDs. However, if you edit the EntryIDs, the script will fall apart, since it's based on the EntryID's (Reagents mostly). I will think of a way to configure this too (shouldn't be hard at all).
    ---| CHAPTER EXPLANATION |----------------------------------------------------------------------------------------------------------------------------
    General Info.
    As you know, I have tried to make the Book as customizable as possible, while still keeping the content clarified to edit, for you.
    You can change EVERY title of every chapter, and also at which level the chapter becomes available! Since I have added default names, I will name the chapters according the default settings.
    Another nifty function is the ability to allow the usage of the Book in combat or not. If not allowed, then the book will display an error upon usage. If the player opens the book BEFORE combat, it will still do a 'Combat-Check' when the user attempts to execute an action, it will close the Book. You can also configure this ErrorMessage .

    Chapter 1: The Art of Teleportation
    This chapter is well known as the 'Teleporter'. You can decide wether or not you want the player to pay a reagent (Rune of Teleportation, same as Reagent for MagePortal!) or that it's just free of charge. In my above post you will also find an easy-to-understand tutorial on how to add your very own teleport locations! (e.g. To your malls, PvP area, leveling area, etc.)
    Since I have the reagents-cost disabled for Dalaran and Shattrath, I have also added an option to Enable/Disable reagent cost for these cities each. You can make Shattrath cost a reagent and at the same time have Dalaran cost nothing!

    Chapter 2: The Ritual of Summoning
    This chapter is rather fun and self-explaining. Chapter 2 grants the user the ability to summon different NPCs to the user's location, at the cost of a reagent (Imbued Soul Shard), if enabled. The NPC will be summoned for approx. 45 seconds. After that, the NPC disappears. The Reagents have a unique-count of 5, and if the user summons a Book-Vendor (which usually sells the reagents!) it won't sell the reagent to summon an NPC, to motivate the user to purchase the reagent at the actual vendor (where-ever you place it.)

    Chapter 3: Traveling Through Souls
    This chapter was really fun to make, and is also HIGHLY customizable. You can choose at which level the player gets a 60% mount (default: LVL20) and also for the 100% mount (default: LVL80). You can configure wether the mounting is instant, or a casted spell. Last but not least, you can change the mounted IDs of the mounts for both HORDE and ALLIANCE, both 60% and 100%! (Default: The Paladin mounts for Horde and Alliance).

    Chapter 4: The Salvation of Purification
    The chapter that was kind of a pain in the ass to create. This chapter will randomly apply a buff to the player. There is also a chance that the book fails to do so, and gives a negative effect, such as Death, Teleported high in the air, Be blown away, Health decrease, Displaymodel change, etc. The buffing is not very configurable yet. You can however, enable or disable the removal of ressurrection-sickness via this chapter. If ENABLED, the option will only display when the user has the sickness, otherwise it's hidden!

    Chapter 5: Becoming a Source of Knowledge
    This chapter allows (if enabled!) the user to purchase spells at the cost of some sort of tokens (Configurable, default: Token of Ensemblity). You can change the EntryID of the currency required to purchase the spell, and also the name can be edited (needed for the Gossips).

    Additional Chapters

    I have added 3 additional chapters at the moment of writing. These chapters will, as long as they are in the backpack of the user, add more features to the book. If the user removes, mails or at any reason loses the Add. Chapter, the extra feature will disappear.
    I really am looking for some nifty ideas to expand the Book with (via the Add. Chapters), Please let me know when you have an idea, I will try to make it true!
    The current additional chapters are also configurable in the LUA file.

    ---| FEEDBACK & SUGGESTIONS |-----------------------------------------------------------------------------------------------------------------------
    I 'beg' you to leave a message with your experience using the Book. More important is: How could I possibly improve the script, to expand the functionality and higher the results? In a nutshell: How can I make the Book better in your opinion? All ideas are more than Welcome, and there is no such thing as a 'bad idea'. All ideas will be considered! Your idea may however, not fit in the intension of the Book.
    For those people showing their gratefullness and appreciation: I thank you for doing so, since you are the people that make me want to improve, help and release other scripts of my work.

    ---| CHANGELOG |---------------------------------------------------------------------------------------------------------------------------
    Version 1.4
    - Extremely simplified the Addition of Teleport locations; all you need to do is add 1 line!
    - Total rework on the Buffing system!
    - Again fixed some minor issues.

    Version 1.3
    - Some minor hotfixes.

    Version 1.2
    - Added more Print options: When someone opens the Book, When the LUA scripts loads (you will get a nice overview on what's loaded and what not) and more.
    - Added the configurable option to modify the Book's name (for in-game messages and console-prints)
    - Some other minor fixes.
    Kind Regards,

    Claiver
    Last edited by Claiver; 04-30-2009 at 06:23 PM.

    [Release] The Book of the Wise
  2. #2
    whyyes's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Interesting concept. However, will it work on mangos?!

  3. #3
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats one damn long LUA script!
    +4Rep, very interesting idea and well implementation.

  4. #4
    stoneharry's Avatar Moderator Harry

    Authenticator enabled
    Reputation
    1613
    Join Date
    Sep 2007
    Posts
    4,554
    Thanks G/R
    151/146
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Configuation, Setup, Design and Layout = Amazing (And script it's self ofc).

  5. #5
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Posting in one epic thread. +2

  6. #6
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woah, That is amazing, +Rep x2 If I can.

  7. #7
    Reflection's Avatar Legendary
    Reputation
    783
    Join Date
    Mar 2008
    Posts
    3,377
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks very professionally made, good job!

    Keep it up.

    Freelance Digital Artist
    https://reflectionartwork.deviantart.com
    You did not desert me
    My brothers in arms


  8. #8
    nicdude's Avatar Member
    Reputation
    5
    Join Date
    Feb 2008
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Whoa, that's a first. +Rep.

  9. #9
    Claiver's Avatar Member
    Reputation
    138
    Join Date
    Mar 2009
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    --Finally accepted , thanks for the feedback!--

    Sorry, for I can't post it in the thread after mine, since I already got alot of comments after my thread got approved.

    SQL CAN BE FOUND ON THE FIRST POST!


    Kindest Regards,

    Claiver
    Last edited by Claiver; 04-02-2009 at 10:10 AM.

  10. #10
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the remainder of the information.

  11. #11
    Fireblast's Avatar Contributor
    Reputation
    195
    Join Date
    Aug 2008
    Posts
    883
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    epiccc matee ;D

  12. #12
    Claiver's Avatar Member
    Reputation
    138
    Join Date
    Mar 2009
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you, be sure to check out the new update about the chapters. Some info might have been unclear to you. However, if you still have any questions, ideas, suggestions, etc. please let me know <3. My inspiration will most likely won't let me down, but advice is always very welcome!

    Ohh, I have also added 2 extra screenshots, a comparison between level 10 and 22, the difference in chapters is noticable.

  13. #13
    Claiver's Avatar Member
    Reputation
    138
    Join Date
    Mar 2009
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by whyyes View Post
    Interesting concept. However, will it work on mangos?!
    Most likely: No. I am in no way updated about Mangos, and the chance it works with Mangos is rather small. You may however convert it if you are able to.
    Hope to have informed you enough,

    Claiver.

    EDIT: Am I actually allowed to 'double-post' in my own thread, when answering people's questions? Or if there is a difference between the true intension of the posts? If I am not allowed, then please forgive me this mistake.

  14. #14
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You aren't allowed to double post, you can edit your previous post I believe

  15. #15
    neeger10's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looks fantastic

Page 1 of 5 12345 LastLast

Similar Threads

  1. [GUIDE] Expanding: Book of the Wise
    By Found in forum WoW EMU Guides & Tutorials
    Replies: 13
    Last Post: 05-31-2009, 03:10 AM
  2. [Released] The Ashbringer (Zofikazz Repack 2.3.x)
    By Arthas117 in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 01-12-2008, 05:55 AM
  3. [Release]The Attack Of MMOwned [GAME]
    By EmiloZ in forum Community Chat
    Replies: 2
    Last Post: 12-23-2007, 02:09 PM
  4. [Release] The Armory! ( FULL Edition!)
    By Tom_2001 in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 12-15-2007, 08:35 AM
  5. [Release] The Armory! (beta) ( SMOKING HOT)
    By Tom_2001 in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 12-14-2007, 05:16 PM
All times are GMT -5. The time now is 12:17 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search