ID:242360
 
(See the best response by Urias.)
Code:
obj
Barrahp
health_01
icon='Hp0%.dmi'
icon_state = "0"
layer = MOB_LAYER+10000
New(client/c)
screen_loc="10,5"
c.screen+=src


obj
Barrachakra
chakrar_01
icon='Chakra0%.dmi'
icon_state="0"
layer = MOB_LAYER+10000
New(client/c)
screen_loc="10,4"
c.screen+=src


Problem description:
When I put this screen_loc, appears a large space beetween they, I need put they with one small space beetween... Example:

Now, it's like this:
HP



Chakra

I wanna put like this:
Hp

Chakra

Best response
You can apply pixel offsets to an object's screen location.

screen_loc  =   "1:16, 1:16"


In the snippet I posted the object(make believe it's being applied to an object) is being shifted 16 pixels northeast.
Don't know if that's what you're trying to do, but it seems relevant to your question.

OK, I got it... it's like you said, but different numbers... thanks you