ScriptUO
Ultima Online Fan Board => General UO Chat => Topic started by: Paulonius on January 08, 2010, 03:41:29 AM
-
I still need the following IDs to complete the reference on SA itemIDs. If anyone has them, please post them in this thread. Thanks!!
-P
Essence of Direction
Essence of Singularity
Essence of Achievement
Essence of Precision
-
Essence of Direction............ICHB
Essence of Singularity......ICHB
Essence of Achievement....ICHB
Essence of Precision.....ICHB
-
Stupid question but isn't it odd that they all have the same ID? I mean is that something that can be considered at times normal?
-
Sucks that the coders were lazy and now I will have to put in more code to tell the difference.
-
seems to be happening more and more...... latest one i come award of is daimonds and some blackrock peices have same code.. !!
-
You can use #findCol to determine differences between same ID items.
-
Means another data peice for my imbue info script. Oh well.
I found another ingredient we don't have the Type for: Bottle of Ichor.
Anyone got a bottle of Ichor they can check?
-
KZGB
-
no not really.. they all have the same image... just like Ingots, the only way to figure out which is witch is 1 findcol, or two, use event property.... same with wood. same image, different colors.
-
Hi,
about IDs ..
I would not recommand to use the 2nd way Khameleon said (use event property).
Since the names of the items are effected by localization, your script would cause
language related issues for everyone with a differend language setting.
just for information to be aware of it 8)
-
Last Lifted ID?
Direction : HAMROND
Achievement : GADZZMD
Singularity : LWUBNND
Precision : CDGDTRD
-
I wouldn't use the event property either.. I was just stating the way's it could be done. :P
-
Last Lifted ID?
Direction : HAMROND
Achievement : GADZZMD
Singularity : LWUBNND
Precision : CDGDTRD
No, you will need the ItemType and not the ItemID.
The ItemID you get wth "Last Lift ID" is the unique ID of the
Item you just moved.
You can use this to get the ItemType from an Item or what ever ...
Display Get ID and Type $$ Target your Item/Monster
Set #targcurs 1
Target
Repeat
{
}
Until #TargCurs = 0
FindItem #LTargetID
Display TargetType: #FindType $ TargetID: #LTargetID $
halt
-
Last Lifted ID?
Direction : HAMROND
Achievement : GADZZMD
Singularity : LWUBNND
Precision : CDGDTRD
No, you will need the ItemType and not the ItemID.
The ItemID you get wth "Last Lift ID" is the unique ID of the
Item you just moved.
You can use this to get the ItemType from an Item or what ever ...
Display Get ID and Type $$ Target your Item/Monster
Set #targcurs 1
Target
Repeat
{
}
Until #TargCurs = 0
FindItem #LTargetID
Display TargetType: #FindType $ TargetID: #LTargetID $
halt
OR use #lliftedtype not #lliftedid