1) How to delete all message in print?
2) Can i print name of last target? How to do?
3) How to set target without magic arrow or use any skills for example ? ( ,setlasttarget?
Moderators: Murderator+, Murderator
1) ,textclearelse wrote:Hi,
1) How to delete all message in print?
2) Can i print name of last target? How to do?
3) How to set target without magic arrow or use any skills for example ? ( ,setlasttarget?)
it is possible that standart name aquiring settings not works on your shard configuration, or you using one of old versions of injectionelse wrote:sub name()
uo.print('name of target: '+uo.getname("laststatus"))
end sub
print only "name of target:"
text in UO console can not be forced cleared any way, this is pure client settings.else wrote: sub printdel()
uo.print('Hi!')
wait(100)
uo.exec(',textclear')
end sub
still is in print text 'Hi!'
i still do not understand request. maybe you need use ,addobject then anything you needelse wrote: 3) i need make cross for target as i write ",hide" without action to get lasttarget.
very lagly solve :pWeedDevil wrote:you might try to flood you "uo console" with space
sub printdel()
uo.print('Hi!')
wait(100)
printspam()
end sub
sub printspam()
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
uo.print(" ")
end sub