Another issue with projectiles
|
|
With help from the byond community and a friend I was able to fix the firing from legs problem with my characters on my game now I have another issue when the icon is facing north and south the icon is appearing from the left or right not aligned with the base any tips on fixing this
Here is the code for the skill
obj Eatk icon = 'BeamAttacks.dmi' icon_state = "head" density = 1 layer = 100 pixel_y = 15 pixel_x = -25 New() spawn(100) del src Bump(A) CanDamage(Gowner,A,src) ..()
Move() var/obj/k = new/obj/ETrail(loc) k:dir = dir ..()
|