ID:144582
 
Code:
obj
aura
icon = 'aura{gm-boy}.dmi'

New(icon_state = "bottom-3")
pixel_y = 0
pixel_x = 0

New(icon_state = "bottom-4")
pixel_y = 0
pixel_x = 32

New(icon_state = "bottom-5")
pixel_y = 0
pixel_x = 64

New(icon_state = "bottom-2")
pixel_y = 0
pixel_x = -32

New(icon_state = "bottom-1")
pixel_y = 0
pixel_x = -64


Cant seem to get the pixel_x/y working. can anyone spare an example please? thanks

bump
In response to Ultimate165
Ultimate165 wrote:
bump

proc/ShowHands()
//want it so that you can see your cards, but not other cards not being played
for(var/mob/P in joined)
for(var/i=1,i<=P.Cards.len,i++)
//world << "[P.Cards[i]]" //for testing
var/turf/T = locate(P.x-2,P.y+2,P.z)
var/obj/TheCards/InHand/c = new()
c.icon_state = "BACK"
c.layer = OBJ_LAYER + i
c.loc = locate(T.x+(round(i/3)),T.y,T.z)
c.pixel_x = 0
if(i%3!=0)
c.pixel_x+=(i%3-1)*10
else
c.pixel_x-=10
sleep(5)
//use image to make it so you (P) can see your cards?
c.name = "[P.Cards[i]]"
sleep(5)
var/image/I = image('playing_cards.dmi',c)
I.icon_state = "[P.Cards[i]]"
I.layer = c.layer + 1
P << I


can't say this is the best writen code, but this works for me...
Your use of new is dubious - it appears that you want to have each overload only called if icon_state is equal to whatever, but this isn't how you do it.
You need to have something more like this:
New()
switch(icon_state)
if("whatever1")
pixel_x = 0
pixel_y = 32
if("whatever2")
pixel_x = 32
pixel_y = 32

Etc.
In response to Jik
o_0... erm... what i was trying to make was a more than 1 tile icon

like an icon that is 4x4 big. and idea how i do those? lol
In response to Hazman
as i replied to the other one i was trying to make an icon that is 4x4 tiles in size that i could use as an overlay
In response to Ultimate165
mob
BigGuy
New()
..()
overlays += image(icon = 'BigGuy.dmi',icon_state = "BL")
overlays += image(icon = 'BigGuy.dmi',icon_state = "BR", pixel_x = 32
overlays += image(icon = 'BigGuy.dmi',icon_state = "TL", pixel_y = 32)
overlays += image(icon = 'BigGuy.dmi',icon_state = "TR", pixel_x = 32, pixel_y = 32)


As said before, the method you were using in the beginning is really illogical, it looks like you don't have a firm grasp on DM yet so you might wana take a look at the DM guide again.
- Conj'
In response to The Conjuror
erm threes also 1 more thing... i managed to make the big aura using this code..,


obj
aura
icon = 'aura.dmi'
New()
..()
overlays += image(icon = 'aura.dmi',icon_state = "bottom-3", pixel_y = -16)
overlays += image(icon = 'aura.dmi',icon_state = "bottom-2", pixel_x = -32, pixel_y = -16)
overlays += image(icon = 'aura.dmi',icon_state = "bottom-1", pixel_x = -64, pixel_y = -16)
overlays += image(icon = 'aura.dmi',icon_state = "bottom-4", pixel_x = 32, pixel_y = -16)
overlays += image(icon = 'aura.dmi',icon_state = "bottom-5", pixel_x = 64, pixel_y = -16)
overlays += image(icon = 'aura.dmi',icon_state = "middlebottom-3", pixel_y = 16)
overlays += image(icon = 'aura.dmi',icon_state = "middlebottom-2", pixel_x = -32, pixel_y = 16)
overlays += image(icon = 'aura.dmi',icon_state = "middlebottom-1", pixel_x = -64, pixel_y = 16)
overlays += image(icon = 'aura.dmi',icon_state = "middlebottom-4", pixel_x = 32, pixel_y = 16)
overlays += image(icon = 'aura.dmi',icon_state = "middlebottom-5", pixel_x = 64, pixel_y = 16)
overlays += image(icon = 'aura.dmi',icon_state = "middletop-3", pixel_y = 48)
overlays += image(icon = 'aura.dmi',icon_state = "middletop-2", pixel_x = -32, pixel_y = 48)
overlays += image(icon = 'aura.dmi',icon_state = "middletop-1", pixel_x = -64, pixel_y = 48)
overlays += image(icon = 'aura.dmi',icon_state = "middletop-4", pixel_x = 32, pixel_y = 48)
overlays += image(icon = 'aura.dmi',icon_state = "middletop-5", pixel_x = 64, pixel_y = 48)
overlays += image(icon = 'aura.dmi',icon_state = "top-2", pixel_y = 80)
overlays += image(icon = 'aura.dmi',icon_state = "top-1", pixel_x = -32, pixel_y = 80)
overlays += image(icon = 'aura.dmi',icon_state = "top-3", pixel_x = 32, pixel_y = 80)


now how do i make a verb to call this object as an underlay... lol... sorry for all hte questions
In response to Ultimate165
:/

mob/verb/underlayMeh()
src.underlays += new/obj/aura
In response to The Conjuror
Thanks :D...i know that probly seemed as simple as **** to you but that has enlightend me a lot :D