|
You last visited: Today at 07:04
Advertisement
ItemID numbers for Bots / Macros
Discussion on ItemID numbers for Bots / Macros within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.
01/11/2018, 17:33
|
#1
|
elite*gold: 0
Join Date: Jan 2015
Posts: 4
Received Thanks: 0
|
ItemID numbers for Bots / Macros
I have been searching for days, looking for a list of IN-Game Guild Wars 1 ItemID codes and cannot find this anywhere. Does anyone know how to identify ItemID codes or is there a list somewhere I can look at? This would be helpful for a lot of people.
How this started was I was using a Vaettir Bot from here and during Wintersday it would not pick up CC shards. I couldn't find the ItemID code and noticed it was difficult to find any ItemID code.
Please post here for myself and others to see. Thank you!
|
|
|
01/11/2018, 19:14
|
#2
|
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
|
Quote:
Originally Posted by Barmar Grave
I have been searching for days, looking for a list of IN-Game Guild Wars 1 ItemID codes and cannot find this anywhere. Does anyone know how to identify ItemID codes or is there a list somewhere I can look at? This would be helpful for a lot of people.
How this started was I was using a Vaettir Bot from here and during Wintersday it would not pick up CC shards. I couldn't find the ItemID code and noticed it was difficult to find any ItemID code.
Please post here for myself and others to see. Thank you!
|
People are so lazy nowadays...
|
|
|
01/11/2018, 22:01
|
#3
|
elite*gold: 0
Join Date: Jan 2015
Posts: 4
Received Thanks: 0
|
I completely agree with you. That wasn't the case here though. I really have been searching for days. There's a lot of posts to go through!
Thank you very much btw!
|
|
|
01/12/2018, 20:18
|
#4
|
elite*gold: 16
Join Date: Apr 2016
Posts: 238
Received Thanks: 293
|
<3 hihi Iagree too <3 :P
|
|
|
06/20/2018, 03:20
|
#5
|
elite*gold: 0
Join Date: Jul 2014
Posts: 14
Received Thanks: 0
|
Im changing a bot to pick up gold items, but dont want it to do so for Shadow Bows. I've been trying to find the ID for "Shadow Bow" but cant find a list (the one posted above doesnt contain most weapons)
I cant get toolbox to work either, so if someone can tell me the id for Shadow Bow, that'd be great. Thanks
|
|
|
06/20/2018, 05:56
|
#6
|
elite*gold: 0
Join Date: Jun 2009
Posts: 94
Received Thanks: 66
|
i don't know why you want to ignore gold Shadow bows, but i'll tell you what i do to know a item id
- Get item that you need the id
- Put item a certain slot, for first item in back pack use (1,1), for first item in belt use (2,1), etc...
- Run this code, will show you the item model id
Code:
$Item1 = GetItemBySlot(1, 1)
MsgBox(0, "" ,"Item id is " & DllStructGetData($Item1, "ModelID"))
i haven't tried with weapons but heard you might need to grab a few different weapons, testing is your friend
|
|
|
06/20/2018, 09:31
|
#7
|
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
|
He's going to have to initialize to use that code. Why not give him a working script.
|
|
|
06/21/2018, 22:57
|
#8
|
elite*gold: 0
Join Date: Jun 2009
Posts: 94
Received Thanks: 66
|
Quote:
Originally Posted by phat34
He's going to have to initialize to use that code. Why not give him a working script.
|
hes saying he's modifying a bot i assumed he wouldn't need a full script, but sure
Code:
#NoTrayIcon
#include <MsgBoxConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <GuiEdit.au3>
#include "GWA2.au3"
Opt("GUIOnEventMode", True) ; enable gui on event mode
Global $boolInitialized = False
Global $boolRunning = False
Global Const $SleepTime = 250 ; in milliseconds
Global Const $MainGui = GUICreate("Item Model ID", 300, 118)
GUISetOnEvent($GUI_EVENT_CLOSE, "_exit")
GUICtrlCreateLabel("Name", 8, 6, 156, 17, $SS_CENTER)
Global Const $inputCharName = GUICtrlCreateCombo("", 8, 24, 150, 22)
GUICtrlSetData(-1, GetLoggedCharNames())
Global Const $btnStart = GUICtrlCreateButton("Start", 90, 68, 60)
GUICtrlSetOnEvent($btnStart, "EventHandler")
GUISetOnEvent($GUI_EVENT_CLOSE, "EventHandler")
GUISetState(@SW_SHOW)
Func Main ()
Do
Sleep(100)
Until $boolInitialized
While 1
If ($boolRunning) Then
$Item1 = GetItemBySlot(1, 1)
$Item2 = GetItemBySlot(1, 2)
$Item3 = GetItemBySlot(1, 3)
MsgBox(0, "" , "1ยบ item model is " & DllStructGetData($Item1, "ModelID"));
MsgBox(0, "" , "2ยบ item model is " & DllStructGetData($Item2, 'ModelID'))
MsgBox(0, "" , "3ยบ Item Model is " & DllStructGetData($Item3, 'ModelID'))
$boolRunning = False
EndIf
Sleep(100)
WEnd
EndFunc
Func EventHandler()
Switch [MENTION=3027413]Gui_[/MENTION]CtrlId
Case $GUI_EVENT_CLOSE
Exit
Case $btnStart
If $boolRunning Then
GUICtrlSetData($btnStart, "Resume")
$boolRunning = False
ElseIf $boolInitialized Then
GUICtrlSetData($btnStart, "Get ID")
$boolRunning = True
Else
$boolRunning = True
GUICtrlSetData($btnStart, "Initializing...")
GUICtrlSetState($btnStart, $GUI_DISABLE)
GUICtrlSetState($inputCharName, $GUI_DISABLE)
WinSetTitle($MainGui, "", GUICtrlRead($inputCharName))
If GUICtrlRead($inputCharName) = "" Then
If Initialize(ProcessExists("gw.exe")) = False Then ; don't need string logs or event system
MsgBox(0, "Error", "Guild Wars it not running.")
Exit
EndIf
Else
If Initialize(GUICtrlRead($inputCharName)) = False Then ; don't need string logs or event system
MsgBox(0, "Error", "Can't find a Guild Wars client with that character name.")
Exit
EndIf
EndIf
GUICtrlSetData($btnStart, "Get ID")
GUICtrlSetState($btnStart, $GUI_ENABLE)
$boolInitialized = True
EndIf
EndSwitch
EndFunc
Main()
BTW an non insc Gold Shadow Bow Model ID was 143, not sure all shadow bows will have this Model ID but give it a try
|
|
|
06/21/2018, 23:06
|
#9
|
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
|
Nice and Concise! Sorry bro... I was just kidding... but, that's awesome!
I just run my old botdeveloper.au3 click on all items and scan through the list when I need item info...
|
|
|
07/05/2018, 19:57
|
#10
|
elite*gold: 0
Join Date: Jul 2018
Posts: 2
Received Thanks: 2
|
Incomplete list I made
Code:
#Region Axes
Global Const $TYPE_Axe = 2
Global Const $ITEM_ID_BattleAxe = 109
Global Const $ITEM_ID_HeavyBattlePick = 110 ;Piercing Dmg
Global Const $ITEM_ID_DoubleBladedAxe = 113
Global Const $ITEM_ID_GreatAxe = 115
Global Const $ITEM_ID_HandAxe = 116
Global Const $ITEM_ID_PiercingAxe = 121
Global Const $ITEM_ID_Cleaver = 122
Global Const $ITEM_ID_SpikedAxe = 126
Global Const $ITEM_ID_WarAxe = 130
Global Const $ITEM_ID_ArchaicAxe = 746
Global Const $ITEM_ID_GothicAxe = 748
Global Const $ITEM_ID_CharrAxe = 749
Global Const $ITEM_ID_MorningStarAxe = 751
Global Const $ITEM_ID_RunicAxe = 753
Global Const $ITEM_ID_GhoticDualAxe = 1183
Global Const $ITEM_ID_DualWingedAxe = 1753
Global Const $ITEM_ID_FieryBladeAxe = 1754
Global Const $ITEM_ID_Sickle = 1755
Global Const $ITEM_ID_WingedAxe = 1757
Global Const $ITEM_ID_CrudeAxe = 1758
Global Const $ITEM_ID_JaggedReaver = 2033
Global Const $ITEM_ID_BattleAxe2 = 2200
Global Const $ITEM_ID_BattlePick = 2201 ;Piercing Dmg
Global Const $ITEM_ID_GemStoneAxe = 2202
Global Const $ITEM_ID_GreatAxe2 = 2204
Global Const $ITEM_ID_CruelHandAxe = 2205
Global Const $ITEM_ID_SerpentAxe = 2206
Global Const $ITEM_ID_Cleaver2 = 2208
Global Const $ITEM_ID_TribalAxe = 2209
Global Const $ITEM_ID_Sickle2 = 2210
Global Const $ITEM_ID_SpikedAxe2 = 2211
#EndRegion Axes
#Region Bows
Global Const $TYPE_Bow = 5
Global Const $ITEM_ID_CompositeBow = 131 ;Recurve Bow
Global Const $ITEM_ID_Flatbow = 132 ;Flatbow
Global Const $ITEM_ID_HalfMoonOS = 134 ;Shortbow
Global Const $ITEM_ID_HornBow = 135 ;Hornbow
Global Const $ITEM_ID_IvoryBow = 136 ;Hornbow
Global Const $ITEM_ID_Longbow = 137 ;Longbow
Global Const $ITEM_ID_FeatheredLongbow = 138 ;Longbow
Global Const $ITEM_ID_HornBow2 = 139 ;Hornbow
Global Const $ITEM_ID_DeadBow = 141 ;Longbow
Global Const $ITEM_ID_RecurveBow = 142 ;Recurve Bow
Global Const $ITEM_ID_Shortbow = 144 ;Shortbow
Global Const $ITEM_ID_AmberLongbow = 754 ;Longbow
Global Const $ITEM_ID_JadeLongbow = 756 ;Longbow
Global Const $ITEM_ID_BrambleHornbow = 868 ;Hornbow
Global Const $ITEM_ID_BrambleLongbow = 906 ;Longbow
Global Const $ITEM_ID_BrambleRecurveBow = 934 ;Recurve Bow
Global Const $ITEM_ID_BrambleShortbow = 957 ;Shortbow
Global Const $ITEM_ID_IronWingFlatbow = 1002 ;Flatbow
Global Const $ITEM_ID_CelestialLongbow = 1068 ;Longbow
Global Const $ITEM_ID_BambleFlatbow = 1359 ;Flatbow
Global Const $ITEM_ID_IvoryBow2 = 1368 ;Hornbow
Global Const $ITEM_ID_SkullHornbow = 1371 ;Hornbow
Global Const $ITEM_ID_AzureRecurveBow = 1501 ;Recurve Bow
Global Const $ITEM_ID_AzureShortBow = 1505 ;Shortbow
Global Const $ITEM_ID_BladedRecurveBow = 1759 ;Recurve Bow
Global Const $ITEM_ID_DragonHornBow = 1760 ;Hornbow
Global Const $ITEM_ID_CagedShortbow = 1761 ;Shortbow
Global Const $ITEM_ID_FeatheredFlatbow = 1762 ;Flatbow
Global Const $ITEM_ID_StoneshardHornBow = 1763 ;Hornbow
Global Const $ITEM_ID_WoodenLongbow = 1764 ;Longbow
Global Const $ITEM_ID_SturdyRecurveBow = 1765 ;Recurve Bow
Global Const $ITEM_ID_CompositeShortbow = 1766 ;Shortbow
Global Const $ITEM_ID_SpikedRecurveBow = 1767 ;Recurve Bow
Global Const $ITEM_ID_TurtleShellLongbow = 2036 ;Longbow
Global Const $ITEM_ID_MaplewoodLongbow = 2037 ;Longbow
Global Const $ITEM_ID_ForkedHornBow = 2038 ;Hornbow
Global Const $ITEM_ID_HalfMoon = 2214 ;Shortbow
Global Const $ITEM_ID_BrambleHornbow2 = 2260 ;Hornbow
Global Const $ITEM_ID_AureateLongBow = 2264 ;Longbow
Global Const $ITEM_ID_IvoryBow3 = 2278 ;Hornbow
#EndRegion Bows
#Region Focus
Global Const $TYPE_Focus = 12
Global Const $ITEM_ID_InscribedChakram = 147 ;Domination Magic
Global Const $ITEM_ID_InscribedChakram2 = 149 ;Domination Magic
Global Const $ITEM_ID_InscribedChakram3 = 150 ;Domination Magic
Global Const $ITEM_ID_JeweledChakram = 151 ;Illusion Magic
Global Const $ITEM_ID_JeweledChakram2 = 153 ;Illusion Magic
Global Const $ITEM_ID_JeweledChakram3 = 154 ;Illusion Magic
Global Const $ITEM_ID_JeweledChalice = 155 ;Inspiration Magic
Global Const $ITEM_ID_JeweledChalice2 = 157 ;Inspiration Magic
Global Const $ITEM_ID_JeweledChalice3 = 158 ;Inspiration Magic
Global Const $ITEM_ID_Idol = 159 ;Blood magic
Global Const $ITEM_ID_Idol2 = 162 ;Blood magic
Global Const $ITEM_ID_AccursedIcon = 163 ;Curses
Global Const $ITEM_ID_GrimCesta = 167 ;Death Magic
Global Const $ITEM_ID_GrimCesta2 = 170 ;Death Magic
Global Const $ITEM_ID_EarthScroll = 175 ;Earth Magic
Global Const $ITEM_ID_EarthScroll2 = 177 ;Earth Magic
Global Const $ITEM_ID_EarthScroll3 = 178 ;Earth Magic
Global Const $ITEM_ID_FlameArtifact = 179 ;Fire Magic
Global Const $ITEM_ID_FlameArtifact2 = 181 ;Fire Magic
Global Const $ITEM_ID_FlameArtifact3 = 182 ;Fire Magic
Global Const $ITEM_ID_FrostArtifact = 185 ;Water Magic
Global Const $ITEM_ID_DivineSymbol = 189 ;Divine Favor
Global Const $ITEM_ID_DivineSymbol2 = 190 ;Divine Favor
Global Const $ITEM_ID_HealingAnkh = 191 ;Healing Prayers
Global Const $ITEM_ID_HealingAnkh2 = 192 ;Healing Prayers
Global Const $ITEM_ID_HealingAnkh3 = 193 ;Healing Prayers
Global Const $ITEM_ID_HealingAnkh4 = 194 ;Healing Prayers
Global Const $ITEM_ID_ProtectiveIcon = 195 ;Protection Prayers
Global Const $ITEM_ID_ProtectiveIcon2 = 198 ;Protection Prayers
Global Const $ITEM_ID_JeweledChakram4 = 562 ;Illusion Magic
Global Const $ITEM_ID_JeweledChalice4 = 563 ;Inspiration Magic
Global Const $ITEM_ID_Idol3 = 564 ;Blood magic
Global Const $ITEM_ID_AccursedIcon2 = 565 ;Curses
Global Const $ITEM_ID_GrimCesta3 = 566 ;Death Magic
Global Const $ITEM_ID_EarthScroll4 = 568 ;Earth Magic
Global Const $ITEM_ID_FlameArtifact4 = 569 ;Fire Magic
Global Const $ITEM_ID_FrostArtifact2 = 570 ;Water Magic
Global Const $ITEM_ID_HealingAnkh5 = 572 ;Healing Prayers
Global Const $ITEM_ID_ProtectiveIcon3 = 573 ;Protection Prayers
Global Const $ITEM_ID_EerieFocus = 574 ;Communing
Global Const $ITEM_ID_WrithingFocus = 575 ;Restoration Magic
Global Const $ITEM_ID_PaperFanFC = 775 ;Fast Casting
Global Const $ITEM_ID_PaperFanSR = 776 ;Soul Reaping
Global Const $ITEM_ID_GildedArtifact = 880 ;Fast Casting
Global Const $ITEM_ID_BoneIdol = 881 ;Soul Reaping
Global Const $ITEM_ID_BleachedSkull = 894 ;Soul Reaping
Global Const $ITEM_ID_GoldenChalice = 895 ;Energy Storage
Global Const $ITEM_ID_PaperLantern = 896 ;Fire Magic
Global Const $ITEM_ID_CeremonialCauldrom = 897 ;Spawning Power
Global Const $ITEM_ID_HallowedIdol = 1010 ;Smiting Prayers
Global Const $ITEM_ID_JugDF = 1022 ;Divine Favor
Global Const $ITEM_ID_ProngedFan = 1729 ;Divine Favor
Global Const $ITEM_ID_InscribedChakram4 = 1783 ;Domination Magic
Global Const $ITEM_ID_WoodenChakram = 1784 ;Domination Magic
Global Const $ITEM_ID_OminousEidolon = 1785 ;Domination Magic
Global Const $ITEM_ID_MajesticFocus = 1786 ;Domination Magic
Global Const $ITEM_ID_GildedArtifact2 = 1787 ;Fast Casting
Global Const $ITEM_ID_JeweledChakram5 = 1788 ;Illusion Magic
Global Const $ITEM_ID_StoneChakram = 1789 ;Illusion Magic
Global Const $ITEM_ID_ChimericEye = 1790 ;Illusion Magic
Global Const $ITEM_ID_JeweledChalice5 = 1791 ;Inspiration Magic
Global Const $ITEM_ID_AureateChalice = 1792 ;Inspiration Magic
Global Const $ITEM_ID_Butterflymirror = 1793 ;Inspiration Magic
Global Const $ITEM_ID_Idol4 = 1795 ;Blood magic
Global Const $ITEM_ID_GrimCesta4 = 1801 ;Death Magic
Global Const $ITEM_ID_EarthScroll5 = 1807 ;Earth Magic
Global Const $ITEM_ID_EerieFocus2 = 1826 ;Communing
Global Const $ITEM_ID_IdolofSwiftness = 1975 ;Blood magic
#EndRegion Focus
#Region Hammers
Global Const $TYPE_Hammer = 15
Global Const $ITEM_ID_JadeHammer = 771
Global Const $ITEM_ID_MarbleHammer = 772
Global Const $ITEM_ID_ColossalPick = 773
Global Const $ITEM_ID_CopperCrusher = 2272
Global Const $ITEM_ID_BronzeCrusher = 2273
Global Const $ITEM_ID_IgneousMaul = 2282
#EndRegion Hammers
#Region Wands
;All = Divine Favor, Smiting Prayers, Blood Magic, Curses, Death Magic, Domination Magic, Illusion Magic, Air Magic, Earth Magic, Fire Magic, Water Magic, Channeling Magic, Communing, Spawning Power
Global Const $TYPE_Wand = 22
Global Const $ITEM_ID_CaneDom1 = 251 ;Domination Magic
Global Const $ITEM_ID_CaneDom2 = 254 ;Domination Magic
Global Const $ITEM_ID_CaneIllu1 = 255 ;Illusion Magic
Global Const $ITEM_ID_CaneIllu2 = 257 ;Illusion Magic
Global Const $ITEM_ID_CaneIllu3 = 258 ;Illusion Magic
Global Const $ITEM_ID_FireWand = 275 ;Fire Magic
Global Const $ITEM_ID_SmitingRod = 288 ;Smiting Prayers
Global Const $ITEM_ID_SmitingRod2 = 290 ;Smiting Prayers
Global Const $ITEM_ID_WaterWand = 584 ;Water Magic
Global Const $ITEM_ID_AmberWand = 925 ;All
Global Const $ITEM_ID_JadeWand = 927 ;All
Global Const $ITEM_ID_JellyfishWand = 928 ;All
Global Const $ITEM_ID_WaterWand2 = 1247 ;Water Magic
Global Const $ITEM_ID_WhalekinWand = 1453 ;Water Magic
Global Const $ITEM_ID_VoltaicWand = 1487 ;Energy Storage
Global Const $ITEM_ID_SilverBoarScepterSP = 1708 ;Spawning Power
Global Const $ITEM_ID_SilverBoarScepterSR = 1711 ;Soul Reaper
Global Const $ITEM_ID_CaneDom3 = 1829 ;Domination Magic
Global Const $ITEM_ID_GazingSpecter = 1830 ;Domination Magic
Global Const $ITEM_ID_ImposingScepter = 1831 ;Domination Magic
Global Const $ITEM_ID_ArcaneScepter = 1832 ;Fast Casting
Global Const $ITEM_ID_CrystalWand = 1833 ;Inspiration Magic
Global Const $ITEM_ID_CaneIllu4 = 1834 ;Illusion Magic
Global Const $ITEM_ID_HypnoticScepter = 1835 ;Illusion Magic
Global Const $ITEM_ID_WaterWand3 = 1854 ;Water Magic
Global Const $ITEM_ID_SilverBoarScepterDV = 2286 ;Divine Favor
Global Const $ITEM_ID_BlazingWingWand = 2288 ;Fire Magic
#EndRegion Wands
#Region Shields
Global Const $TYPE_Shield = 24
Global Const $ITEM_ID_Aegis = 323 ;Tactics
Global Const $ITEM_ID_OrnateBuckler = 326 ;Tactics
Global Const $ITEM_ID_ReinforcedBuckler = 327 ;Tactics
Global Const $ITEM_ID_WoodenBuckler = 328 ;Tactics
Global Const $ITEM_ID_CrudeShield = 330 ;Tactics
Global Const $ITEM_ID_Defender = 331 ;Strength
Global Const $ITEM_ID_SkullShield = 333 ;Tactics
Global Const $ITEM_ID_ShieldoftheWing = 334 ;Tactics
Global Const $ITEM_ID_WoodenBuckler2 = 335 ;Tactics
Global Const $ITEM_ID_SkeletonShield = 337 ;Tactics
Global Const $ITEM_ID_SkullShield2 = 338 ;Tactics
Global Const $ITEM_ID_TallShield = 343 ;Tactics
Global Const $ITEM_ID_TowerShield = 345 ;Strength
Global Const $ITEM_ID_EmblazonedDefender = 947 ;Strength, Tactics
Global Const $ITEM_ID_EmbossedAegisS = 948 ;Strength
Global Const $ITEM_ID_EmbossedAegisT = 949 ;Tactics
Global Const $ITEM_ID_GothicDefenderS = 950 ;Strength
Global Const $ITEM_ID_GothicDefenderT = 951 ;Tactics
Global Const $ITEM_ID_GuardianOfTheHuntS = 1320 ;Strength
Global Const $ITEM_ID_GuardianOfTheHuntT = 1321 ;Tactics
Global Const $ITEM_ID_ScarabShellAegis = 1439 ;Command, Motivation
Global Const $ITEM_ID_AncientShield = 1486 ;Command
Global Const $ITEM_ID_AureateAegis = 1493 ;Motivation
Global Const $ITEM_ID_EagleDefender = 1527 ;Command
Global Const $ITEM_ID_ShieldoftheLion = 1529 ;Strength
Global Const $ITEM_ID_GoldleafDefenderM = 1877 ;Motivation
Global Const $ITEM_ID_GoldleafDefenderC = 1878 ;Command
Global Const $ITEM_ID_WoodenBuckler3 = 1882 ;Tactics
Global Const $ITEM_ID_DaedalShield = 1887 ;Motivation
Global Const $ITEM_ID_ShieldoftheLion2 = 1888 ;Strength
Global Const $ITEM_ID_HeraldicShield = 1889 ;Command
Global Const $ITEM_ID_AdamantineShield = 1892 ;Tactics
Global Const $ITEM_ID_MilitiaShield = 2198 ;Tactics
Global Const $ITEM_ID_ReinforcedDefender = 2300 ;Motivation
Global Const $ITEM_ID_OrnateBuckler2 = 2400 ;Strength
Global Const $ITEM_ID_OrnateBuckler3 = 2401 ;Tactics
Global Const $ITEM_ID_ReinforcedBuckler2 = 2402 ;Strength, Tactics
Global Const $ITEM_ID_ShieldoftheWing2 = 2403 ;Strength, Tactics, Command, Motivation
Global Const $ITEM_ID_SkeletonShield2 = 2404 ;Tactics
Global Const $ITEM_ID_SpikedTarge = 2405 ;Tactics
Global Const $ITEM_ID_TallShield2 = 2406 ;Tactics
Global Const $ITEM_ID_TowerShield2 = 2407 ;Strength
Global Const $ITEM_ID_EbonHandAegis = 2408 ;Strength
Global Const $ITEM_ID_EquineAegisC = 2409 ;Command
Global Const $ITEM_ID_EquineAegisT = 2410 ;Tactics
Global Const $ITEM_ID_PlatedShieldM = 2411 ;Motivation
Global Const $ITEM_ID_PlatedShieldS = 2412 ;Strength
Global Const $ITEM_ID_OakenAegisT = 2413 ;Strength
Global Const $ITEM_ID_OakenAegisS = 2414 ;Tactics
#EndRegion Shields
#Region Staffs
;All = Divine Favor, Smiting Prayers, Blood Magic, Curses, Death Magic ,Domination Magic, Illusion Magic, Air Magic ,Earth Magic, Fire Magic, Water Magic, Channeling Magic, Communing, Spawning Power
Global Const $TYPE_Staff = 26
Global Const $ITEM_ID_InscribedStaff = 346 ;Domination Magic
Global Const $ITEM_ID_InscribedStaff2 = 348 ;Domination Magic
Global Const $ITEM_ID_InscribedStaff3 = 349 ;Domination Magic
Global Const $ITEM_ID_JewelledStaff = 350 ;Illusion Magic
Global Const $ITEM_ID_JewelledStaff2 = 353 ;Illusion Magic
Global Const $ITEM_ID_BoneStaff = 360 ;Death Magic
Global Const $ITEM_ID_BoneStaff2 = 361 ;Death Magic
Global Const $ITEM_ID_SmitingStaff = 384 ;Smiting Prayers
Global Const $ITEM_ID_DeadStaff = 390 ;All
Global Const $ITEM_ID_RavenStaff = 391 ;Divine Favor
Global Const $ITEM_ID_AirStaff = 557 ;Air Magic
Global Const $ITEM_ID_EarthStaff = 605 ;Earth Magic
Global Const $ITEM_ID_FireStaff = 608 ;Fire Magic
Global Const $ITEM_ID_AmberStaff = 784 ;All ;Divine Favor
Global Const $ITEM_ID_CockatriceStaff = 786 ;Fire Magic
Global Const $ITEM_ID_JadeStaff = 788 ;All
Global Const $ITEM_ID_HolyBranch = 961 ;Divine Favor
Global Const $ITEM_ID_ZodiacStaff = 1041 ;All
Global Const $ITEM_ID_InscribedStaff4 = 1275 ;Domination Magic
Global Const $ITEM_ID_ConjuringStaff = 1298 ;Spawning Power
Global Const $ITEM_ID_ChannelingStaff = 1299 ;Channeling Magic
Global Const $ITEM_ID_SpinalStaff = 1394 ;Blood Magic
Global Const $ITEM_ID_TempestStaff = 1403 ;Air Magic
Global Const $ITEM_ID_PortalStaff = 1496 ;Energy Storage
Global Const $ITEM_ID_EnsorcellingStaff = 1711 ;Domination Magic
Global Const $ITEM_ID_InscribedStaff5 = 1909 ;Domination Magic
Global Const $ITEM_ID_ClairvoyantStaff = 1910 ;Domination Magic
Global Const $ITEM_ID_EnsorcellingStaff2 = 1911 ;Domination Magic
Global Const $ITEM_ID_ArcaneStaff = 1912 ;Fast Casting
Global Const $ITEM_ID_JewelledStaff3 = 1913 ;Illusion Magic
Global Const $ITEM_ID_HypnoticStaff = 1914 ;Illusion Magic
Global Const $ITEM_ID_JewelledStaff4 = 1915 ;Illusion Magic
Global Const $ITEM_ID_IllusoryStaff = 1916 ;Illusion Magic
Global Const $ITEM_ID_ScryingGlassStaff = 1917 ;Inspiration Magic
Global Const $ITEM_ID_ProtectiveStaff = 1947 ;Protection Prayers
Global Const $ITEM_ID_FuchsiaStaff = 2089 ;Illusion Magic
Global Const $ITEM_ID_AureateStaff = 2097 ;Fast Casting
Global Const $ITEM_ID_GoldtouchedStaff = 2098 ;Energy Storage
Global Const $ITEM_ID_ChrysocolaStall = 2323 ;Divine Favor, Inspiration Magic, Energy Storage, Soul Reaping, Spawning Power //Exclusive Ooze pit Dungeon
#EndRegion Staffs
#Region Swords
Global Const $TYPE_Sword = 27
Global Const $ITEM_ID_DragonSword = 402
Global Const $ITEM_ID_LongSword = 412
Global Const $ITEM_ID_Spatha = 419
Global Const $ITEM_ID_CelestialSword = 790
Global Const $ITEM_ID_WickedSword = 792
Global Const $ITEM_ID_GoldenPhoenixBlade = 795
Global Const $ITEM_ID_SunquaBlade = 797
Global Const $ITEM_ID_ZodiacSword = 1043
Global Const $ITEM_ID_Gladius = 1194
Global Const $ITEM_ID_JadeSword = 1322
Global Const $ITEM_ID_DesolationSword = 1554
Global Const $ITEM_ID_DragonSword2 = 1612
Global Const $ITEM_ID_LesserHighlanderBlade = 2107
Global Const $ITEM_ID_GreaterHighlanderBlade = 2108
Global Const $ITEM_ID_MammothBlade = 2127
Global Const $ITEM_ID_SteelBroadsword = 2128
Global Const $ITEM_ID_PlatinumBroadsword = 2129
Global Const $ITEM_ID_Flamberge = 2250
Global Const $ITEM_ID_RunicBlade = 2306
Global Const $ITEM_ID_HighlanderBlade = 2307
#EndRegion Swords
#Region Daggers
Global Const $TYPE_Daggers = 32
Global Const $ITEM_ID_JadeDaggers = 762
Global Const $ITEM_ID_KrisDaggers = 764
Global Const $ITEM_ID_OniDaggers = 766
Global Const $ITEM_ID_HookedDaggers = 986
Global Const $ITEM_ID_ZodiacDaggers = 1004
Global Const $ITEM_ID_ElonianDaggers = 1376
Global Const $ITEM_ID_SteelDaggers = 1379
Global Const $ITEM_ID_BronzeDaggers = 1774
Global Const $ITEM_ID_SavageDaggers = 2040
Global Const $ITEM_ID_ArrowbladeDaggers = 2041
Global Const $ITEM_ID_CrescentBlades = 2042
Global Const $ITEM_ID_CrudeDaggers = 2043
Global Const $ITEM_ID_ButterflyKnives = 2218
Global Const $ITEM_ID_SplitChakrams = 2219
Global Const $ITEM_ID_Dirks = 2220
Global Const $ITEM_ID_GildedDaggers = 2221
Global Const $ITEM_ID_Korambits = 2222
Global Const $ITEM_ID_Sai = 2224
Global Const $ITEM_ID_Stilletos = 2225
Global Const $ITEM_ID_GoldenTalons = 2226
#EndRegion Daggers
#Region Scythes
Global Const $TYPE_Scythe = 35
Global Const $ITEM_ID_EmbossedScythe = 1467
Global Const $ITEM_ID_GazingScythe = 1471
Global Const $ITEM_ID_AncientScythe =1474
Global Const $ITEM_ID_DuskbladeScythe = 1482
Global Const $ITEM_ID_CrenellatedScythe =1874
Global Const $ITEM_ID_OrnateScythe = 2275
#EndRegion Scythes
#Region Scythes
Global Const $TYPE_Spear = 36
Global Const $ITEM_ID_SkullSpear = 1512
Global Const $ITEM_ID_CloudedSpear = 1519
Global Const $ITEM_ID_SunburstSpear = 1522
#EndRegion Scythes
|
|
|
Similar Threads
|
charname numbers or guild numbers will take block?
02/21/2010 - Silkroad Online - 6 Replies
charname numbers or guild numbers will take block?
some friends said that to me
is it right?
|
How 2 get a ItemID?
02/13/2007 - Lineage 2 - 3 Replies
iam asking my self several times..how to get an itemID >>> so i know how to get the list ID thats easy...there are sites with listID's....but what with Item ID ? how to get them???? can anybody help and tell my?
|
All times are GMT +1. The time now is 07:04.
|
|