Cheiron
Joined: 21 Apr 2005 Posts: 388 Location: Copenhagen, Denmark
|
Posted: Mon Apr 10, 2006 5:17 am Post subject: Arrow pointer script |
|
|
Hiya,
thought I'd like to share this cyborg script. I feel it is especially handy for showing new users features, where to click etc....
also a question: maybe any of you scripting gurus knows a way to rationalize it more??
Regards,
Cheiron
#Arrowpointer script, by Cheiron.
#Places an arrow at mouse position, arrowprops needs to be in your propbag.
px, py = manor.getMouseRmPos()
if chatText == "pointup":
chatText = ""
manor.donProp("9D568CBE6748DEB195AE5A880A335540CD95CDBA")
manor.dropProp(px,py)
if chatText == "pointdown":
chatText = ""
manor.donProp("9D568CBE6748DEB195AE5A880A335540CD95CC5E")
manor.dropProp(px,py)
if chatText == "pointleft":
chatText = ""
manor.donProp("9D568CBE6748DEB195AE5A880A335540CD95CE57")
manor.dropProp(px,py)
if chatText == "pointright":
chatText = ""
manor.donProp("9D568CBE6748DEB195AE5A880A335540CD95CE02")
manor.dropProp(px,py) |
|