RPG Starter

by Falacy
An Open Source Demo/Game with everything you'll need to get started on your very own BYOND Game!
ID:292236
 
Hey Falacy could you help me with something,
I need help when you can use handsings then press Space to excute the move. but only when the skill is learned.
create a variable like
mob/var/SelectedSign=null//or what ever default sign you want to set.

then create a obj and create a click proc like this
obj
HandSign
Cow
icon='put your icon here'
icon_state="the icon_state of the obj"
Click()
src.SelectedSign="Cow"

and then create a verb with macro the key you want to set for player to use. create a verb like this
mob
verb
Sign()
set hidden=1//hide it from players
if(src.SelectedSign=="Cow")
flick("icon_state",src)