ID:157516
 
I have a map item that is just checked in default in skin editor.

mob
verb
viewmap()
//set hidden = 1
winshow(src, "themap", "show=1")

I tried to use this verb to make it show but it didnt work. themap is the window item in the skin. What is wrong?
Darkjohn66 wrote:
I have a map item that is just checked in default in skin editor.

> mob
> verb
> viewmap()
> //set hidden = 1
> winshow(src, "themap", "show=1")

I tried to use this verb to make it show but it didnt work. themap is the window item in the skin. What is wrong?

Well, this is pretty simple. As long as everything is set right, your only problem there is:
winshow(src, "themap", 1)//You do not need show = 1. 
//Only a 1 or 0 is needed. Use 1 to show it, and 0 to hide it.


Hope I helped.
In response to RushSoft Developers
Ah! Thank-you very much ^_^.