ID:139763
 
Code:
        Spy(mob/M in Mob in world)
set name = "Spy"
set category = "Admin"
winshow(client, SpyWindow, show=1)
winset(usr, Spymap.map,"SpyWindow.map.client.eye = M")
StopSpy()
set name = "Stop Spy"
set category = "Admin"
winshow(client,SpyWindow,show=0)
winset(usr, Spymap.map,"SpyWindow.map.client.eye = usr")


Problem description:I Have no idea. I am trying to make a verb which will let you see what another player sees in a diffrent window any and all help is apriciated.

P.S Sorry for my bad spelling

        Spy(mob/M in Mob in world)
set name = "Spy"
set category = "Admin"
winshow(client, SpyWindow, show=1)
winset(usr, "Spymap.map","SpyWindow.map.client.eye = [M]")
StopSpy()
set name = "Stop Spy"
set category = "Admin"
winshow(client,SpyWindow,show=0)
winset(usr, "Spymap.map","SpyWindow.map.client.eye = [usr]")
A second Map control can only be used to display screen objects. It is not possible to do this.
In response to Garthor
Oh damn ok then thank you