Ideally, one topic per distinct problem. This lets people search for similar problems easier, awards points to helpers better, and also maybe gives you an idea of when you need to go back and search some more (like say, the most recent 5 help posts were made by you, which we have had before).
In response to ZeroDay
ZeroDay wrote:
The Motto wrote:
And if your search fails feel free to start a new post

that's what i probly doing always..
in the source i'm a WEB Programmer
well, i solved the problem with grids and i learned finally how to use them :)
so i did something like that :
> mob
> proc
> ChangeInfo(inf)
> usr << output(inf,"grid1:1,2")
>

now the problem is, i got image and i want to remove it from the user, i tried to change the icon state, but i failed .
> obj/Selector
> icon = 'target.dmi'
> icon_state="b"
> pixel_y=32
> mob
> Click()
> var/obj/Selector/K = new()
> var/image/I = image(K,src)
> var/image/IO = image(K,src)
> for(var/mob/M in world)
> IO.icon_state="none"
> usr << I
> if(src.client||src.NPC||src==usr||src.log)
> usr << I
>

Should i open new topic ? becuse i fill like a spammer..
mob
Click()
var/obj/Selector/K = new()
var/image/I = image(K,src)
var/image/IO = image(K,src)
src.client.images-=I//removes it from images


In response to Lord Kakarot
he should also be using src for proc's
In response to Lord Kakarot
Lord Kakarot wrote:
ZeroDay wrote:
The Motto wrote:
And if your search fails feel free to start a new post

that's what i probly doing always..
in the source i'm a WEB Programmer
well, i solved the problem with grids and i learned finally how to use them :)
so i did something like that :
> > mob
> > proc
> > ChangeInfo(inf)
> > usr << output(inf,"grid1:1,2")
> >

now the problem is, i got image and i want to remove it from the user, i tried to change the icon state, but i failed .
> > obj/Selector
> > icon = 'target.dmi'
> > icon_state="b"
> > pixel_y=32
> > mob
> > Click()
> > var/obj/Selector/K = new()
> > var/image/I = image(K,src)
> > var/image/IO = image(K,src)
> > for(var/mob/M in world)
> > IO.icon_state="none"
> > usr << I
> > if(src.client||src.NPC||src==usr||src.log)
> > usr << I
> >

Should i open new topic ? becuse i fill like a spammer..
> mob
> Click()
> var/obj/Selector/K = new()
> var/image/I = image(K,src)
> var/image/IO = image(K,src)
> src.client.images-=I//removes it from images



i'm trying to overlay something only the user can see and not other chars and remove it..
Page: 1 2