mob/var/lastclicked = null
mob
skillcards
Click()
switch(input("Select a key to set this macro to", "Macro", text) in list ("1","2","Nevermind"))
if("1")
// macroinput = 1
winset(src,"macro1","parent=macro;name=1;command=[lastclicked]")
if("2")
// macroinput = 2
winset(src,"macro1","parent=macro;name=2;command=[lastclicked]")
obj
Bed
icon = 'Bed.dmi'
icon_state = "A"
Click()
lastclicked = /mob/verb/Test1
verb
Test1()
usr << "Test"
Edit: Kaiocho I really don't understand that. It yells at me that I have an undefined var and Im not so sure how to set up a variable to run a verrb 0_0. Ill give it a go I guess.