1
General UO Chat / Re: The END of EUO.
« on: October 14, 2010, 07:50:33 AM »
i support Cheffe coz we just an end user likes when u learned how to use windows xp, then microsoft tell u they going to stop support/update on windows xp and release windows 7.
u cant complain why they waste ur times to learn windows xp. only 2 choices in this situation, 1 is dont use thier system anymore. 2 is starting to learn windows 7.
for me, i have starting to learn openeuo. i spent almost 2 hrs to finish my first script.....its totally different program language....it made me die already....but i know this is only way what i can do.
if you all going to learn it out, this script should be a first one that u need to own it.
item & monster id type tool, enjoy all
u cant complain why they waste ur times to learn windows xp. only 2 choices in this situation, 1 is dont use thier system anymore. 2 is starting to learn windows 7.
for me, i have starting to learn openeuo. i spent almost 2 hrs to finish my first script.....its totally different program language....it made me die already....but i know this is only way what i can do.
if you all going to learn it out, this script should be a first one that u need to own it.
item & monster id type tool, enjoy all

Code: [Select]
UO.TargCurs = true
wait(100)
while (UO.TargCurs == true) do
wait(50)
end
local iteminfo = UO.LTargetID
for i = 0,UO.ScanItems(true)-1 do
local id,type,kind,contid,x,y,z,stack,rep,col = UO.GetItem(i)
local name,info = UO.Property(id)
if id == iteminfo then
print("Item ID: " .. id,"Item type: " .. type,"Item color: " .. col)
print("Item Name: " .. name,"Item Properties: " ..info)
end
end