ID:271596
 
i dont seem to understand the winset proc in 4.0, i tried this
mob/verb/Test()
usr.winshow(usr,test,show=1)

and this
mob/verb/Test()
winshow(usr,test,show=1)


But i it says test is is a undefined var and that winshow is an undefined proc...help
did yo double check your indentation levels
"show=1" is an example, trying to convey that the default value, if none entered for that option, is 1.

winshow(usr,"X") is the same as winshow(usr,"X",1), which shows the window with the ID X. winshow(usr,"X",0) hides it.
In response to Dsb520
Yes
In response to GhostAnime
I got it thanks :D