[Program] Portal and Item Builder menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Program] Portal and Item Builder

    Hello my name is Ben and I made a program and everyone started calling it a virus, so I'm back to release source code so you can MAKE it on YOUR computer.

    This is for Mangos I'm sure once i release this someone will get right on converting to ascent and arcemu if you do please say created by Ben re-wrote for ascent/arcemu by (your name).

    I spent a TON of time getting this to work even tho it doesn't seem like much, saves lot of time, and is VERY easy to use if you don't no how to make portals.

    To get the codes below to work simply copy and paste the code into notepad and save as "(any name).bat"

    Does not need to be in special place it makes .SQL that you enter into DBC with HeidiSQL or Navicat.

    For the portal maker you need 2 programs and you have to use in order.


    Here is first step to portal maker -


    Code:
    @echo off
    if exist %name%.sql del %name%.sql
    color 0B
    echo.
    echo Benz Portal Maker
    echo    IMORTANT: Always type something in, if you dont need\want to type 0
    echo.
    echo. Spell Maker (Needed for Portal)
    echo. Entry ID HAS to be found from Wowhead: Makes web browsers happy!
    echo. Type Teleport on wowhead
    echo. Go to Uncategorized Spells
    echo. Find one named only "Teleport" 
    echo. Click it and look at "Effect" HAS to say "Teleport Units"
    echo. Here are a few i know are empty-  
    echo.
    echo. 51112 / 29216 / 34673 / 46611 / 47754 / 46618
    echo.
    
    pause
    
    echo.
    ECHO    Insert please:
    echo.
    set /p id= Entry ID (From WoWHead):
    set /p target_map= Target Map:
    set /p target_position_x= Target Position X:
    set /p target_position_y= Target Position Y:
    set /p target_position_z= Target Position Z:
    set /p target_orientation= Target Orientation:
    
    ECHO INSERT INTO spell_target_position (id, target_map, target_position_x, target_position_y, target_position_z, target_orientation) VALUES (%id%, %target_map%, %target_position_x%, %target_position_y%, %target_position_z%, %target_orientation%);>>%id%.sql
    
    Echo Building...
    
    echo. Remember %id% You will need for next program.
    echo.
    ECHO Done. Hope your liked WoW Portal Builder, From Ben (Internet name Benzkool)
    echo.
    
    pause



    Here is second step to portal maker -


    Code:
    @echo off
    if exist %entry%.sql del %entry%.sql
    color 0B
    echo.
    echo Benz Portal Maker
    echo    IMORTANT: Always type something in, if you dont need\want to type 0
    echo.
    echo. Portal Maker
    echo. Make Portal Display ID Same As The Portal / Object You Want It To Look Like!
    echo.
    
    pause
    
    echo.
    set /p entry= Spawn ID:
    set /p displayid= Display ID:
    set /p name= Name:
    set /p size= Size (1-50):
    set /p data0= (Spell id from last step):
    
    ECHO INSERT INTO gameobject_template (entry, type, displayid, name, castBarCaption, faction, flags, size, data0, data1, data2, data3, data4, data5, data6, data7, data8, data9, data10, data11, data12, data13, data14, data15, data16, data17, data18, data19, data20, data21, data22, data23, scriptName) VALUES (%entry%, 22, %displayid%, '%name%', '', 0, 0, %size%, %data0%, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');>>%entry%.sql
    
    Echo Building...
    
    echo. 
    echo.
    ECHO Done. Hope your liked WoW Portal Builder, From Ben (Internet name Benzkool)
    echo.
    
    pause


    Item maker -


    Code:
    @echo off
    if exist %name%.sql del %name%.sql
    echo.
    echo Benz WoW Item Builder
    echo    IMORTANT: Always type something in, if you dont need\want to type 0
    echo.
    ECHO    Insert please:
    echo.
    
    set /p entry=   Desired entry ID: 
    set /p class= Class (-1 for all):
    set /p subclass= SubClass (-1 for all)
    set /p name=  Name:
    set /p displayid= Displayid (Looks):
    set /p Quality= Quiality (1-5):
    set /p buyprice= Buy Price:
    set /p sellprice= Sell Price:
    set /p AllowableClass= AllowableClass (-1 for all):
    set /p AllowableRace= AllowableRace (-1 for all):
    set /p ItemLevel= ItemLevel (1-255):
    set /p RequiredLevel= RequiredLevel (1-255)
    set /p maxcount= maxcount (1-255):
    set /p stackable= stackable (1-255):
    set /p ContainerSlots= ContainerSlots (1-36):
    echo Max for damage is 10000!
    set /p dmg_min1= dmg_min1:
    set /p dmg_max1= dmg_max1: 
    set /p dmg_type1= dmg_type1:
    set /p armor= armor (max 10000):
    set /p delay= delay (1000 = 1 sec):
    set /p bonding= bonding (0, 1 use, 2 pick-up):
    set /p description= description ("text"):
    set /p sheath= sheath:
    set /p block= block (max 10000):
    set /p itemset= itemset:
    set /p MaxDurability= MaxDurability (0 Never breaks):
    
    ECHO INSERT INTO item_template (entry, class, subclass, unk0, name, displayid, Quality, Flags, BuyCount, BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, 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, RangedModRange, 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, PageText, LanguageID, PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, MaxDurability, area, map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, ArmorDamageModifier, ScriptName, DisenchantID) value (%entry%,%class%,%subclass%,-1,'%name%',%displayid%,%Quality%,0,1,%BuyPrice%,%SellPrice%,0,%AllowableClass%,%AllowableRace%,%ItemLevel%,%RequiredLevel%,0,0,0,0,0,0,0,%maxcount%,%stackable%,%ContainerSlots%,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,%dmg_min
    1%,%dmg_max1%,%dmg_type1%,0,0,0,0,0,0,0,0,0,0,0,0,%armor%,0,0,0,0,0,0,%delay%,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,%bonding%,'%description%',0,0,0,0,0,0,%sheath%,0,0,%block%,%itemset%,%MaxDurability%,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'internalitemhanler',0);>>%name%.sql
    
    echo.
    echo.
    echo Collected info: 
    echo entry:%entry% 
    echo class: %class% 
    echo subclass: %subclass% 
    echo name: %name% 
    echo displayid: %displayid%
    echo Quiality: %quiality%
    echo BuyPrice: %buyprice%
    echo SellPrice: %sellprice%
    echo AllowableClass: %AllowableClass%
    echo AllowableRace: %AllowableRace%
    echo ItemLevel: %ItemLevel%
    echo RequiredLevel: %RequiredLevel%
    echo maxcount: %maxcount%
    echo stackable: %stackable%
    echo dmg_min1: %dmg_min1%
    echo dmg_max1: %dmg_max1% 
    echo dmg_type1: %dmg_type1%
    echo armor: %armor (max 10000)%
    echo delay: %delay%
    echo bonding: %bonding%
    echo sheath: %sheath%
    echo block: %block%
    echo itemset: %itemset%
    echo MaxDurability: %MaxDurability%
    echo.
    echo.
    echo.
    echo Press Enter To Create.
    pause
    
    
    Echo Building...
    
    
    echo. 
    echo If any errors make sure you put info in right and not to high!
    echo. 
    echo.
    ECHO Done. Hope you liked Benz Item Maker.
    echo.
    
    pause

    Hope you like it as much as i do!!!


    Please note that i WILL be converting this to arcemu and ascent very soon
    If you don't want to wait then do it yourself and post link on this forum!

    [Program] Portal and Item Builder
  2. #2
    Hyldran0's Avatar Contributor
    Reputation
    118
    Join Date
    Nov 2008
    Posts
    374
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work +rep from me mate

    edit hehe First post
    Shit's Gone Real

  3. #3
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Hyldran0 View Post
    Nice work +rep from me mate

    edit hehe First post
    TY very much

  4. #4
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    DEFFINITLY AWESOME!!!Deserve REP!!!!+REP BRO!!!
    Immortal GamerZ Under Development!

  5. #5
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx i worked hard on it

  6. #6
    Confucius's Avatar Panda of Worlds The Idiot

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1389
    Join Date
    Oct 2007
    Posts
    2,590
    Thanks G/R
    267/283
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice idea for program and ty for making many can use it and it is probably much faster than scripting it for new people to the mmowned world! +rep 2x
    Got you out leecher!

  7. #7
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hapkidomaster View Post
    Nice idea for program and ty for making many can use it and it is probably much faster than scripting it for new people to the mmowned world! +rep 2x
    Got you out leecher!
    TY for the outta leacher lol

  8. #8
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gratz on Corp!It was like a month ago for that for me but ive been releasing and earning rep if you cant notice!
    Immortal GamerZ Under Development!

  9. #9
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bsod-staff14 View Post
    Gratz on Corp!It was like a month ago for that for me but ive been releasing and earning rep if you cant notice!
    Thx im hoping to get ton of +Rep from this, i put lot work into it, getting it to work was the hard part

    News- ArcEmu one is almost finished, hope to have it ready for tomorrow.
    So people wanting it for that watch this thread i have it ready just get to many frequent errors.

  10. #10
    dongel's Avatar Member
    Reputation
    7
    Join Date
    Nov 2007
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    + Rep for your great work o.O
    But i think its more easy to use ADE / Sypex Portal Creator .

  11. #11
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The whole reason i made this was because i thought there was no program that could do this

    Edit- also didn't think this could get any easier to use..it used to enter into DBC for you but thats when people starting calling it a virus..

    Also usually when you say + Rep you actually do it... -.-
    Last edited by benzkool; 12-10-2008 at 10:18 AM.

  12. #12
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry benzkool when you kinda +Rep people it tends to say you must spread or you gotta wait a day...
    Immortal GamerZ Under Development!

  13. #13
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bsod-staff14 View Post
    Sorry benzkool when you kinda +Rep people it tends to say you must spread or you gotta wait a day...
    lol not you man you rep me yesterday
    was talkin to other guy

  14. #14
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump and double post I'm evil!!!

  15. #15
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lawl why would you go and do that?
    Immortal GamerZ Under Development!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Program] Mangos Program Portal/Item Maker
    By benzkool in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 12-03-2008, 01:47 PM
  2. Free Mats and Items
    By Sym in forum WoW Scam Prevention
    Replies: 9
    Last Post: 11-02-2006, 07:13 PM
All times are GMT -5. The time now is 09:00 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