Thanks for the feedback! yes, the only thing it needs more are some models for the gestures and some shaders. I made the menu myself, funny it works the same in oyur game :p. And i did the paper thing this way:
Obj = Pick Object(MouseX(), MouseY(), 1, 5)
If Obj = 1 OR Obj = 3 OR Obj = 5
MsgColor = RGB(0,255,0)
Else
MsgColor = RGB(255,66,0)
EndIf
Select Obj
Case 1:
MsgColor = RGB(0,255,0)
Msg$ = "<- Rock?"
EndCase
Case 3:
MsgColor = RGB(0,255,0)
Msg$ = "<- Paper?"
EndCase
Case 5:
MsgColor = RGB(0,255,0)
Msg$ = "<- Scissors?"
EndCase
Case Default:
MsgColor = RGB(255,66,0)
Msg$ = "<- Choose a gesture!"
EndCase
EndSelect
D3D_Text 1, Screen Width()/2, MouseY(), 1, Msg$, MsgColor
if you don't understand something feel free to ask