tiles test :)
Posted: 2004-12-19 15:36:18
*warning this script is not working in your version of injection*
text output
(minoc mine)
Code: Select all
sub draw()
var x,y,s
uo.textclose()
uo.textclear()
for y=474 to 498
s=""
for x=2555 to 2580
if uo.privategettile(x,y,-1,1330,1360) then
if uo.privategettile(x,y)>2 then
s=s+"+"
else
s=s+"#"
end if
else
s=s+"_"
end if
next
uo.textprint(s)
next
uo.textopen()
end sub
text output
Code: Select all
_____________#########____
____________#########+#___
___________#############__
__________###############_
__________###+############
__________############+###
_________#################
________##################
_______###################
_______###+###+###########
_______##############+###_
______##################__
_____##################___
____##############+_______
___###############________
___##############_________
___#########______________
___########_______________
___########_______________
__########________________
_########_________________
#+######__________________
#######___________________
#######___________________
#######___________________
(minoc mine)