Games
Developers
Forums
More
BYOND
Download
Developer Guide
Developer Reference
Support
Terms of Service
Membership
Contact Us
Many features on this site require JavaScript. Please enable JavaScript support in your browser.
Register
Login
BYOND Forums
Announcements
·
BYOND Help
·
Bug Reports
·
Feature Requests
·
Beta Testers
·
Beta Bugs
·
Developer Help
·
Design Philosophy
·
Demos & Libraries
·
Tutorials & Snippets
·
Art & Sound
·
Classified Ads
·
Game Updates
·
Contests & Events
·
Linux Talk
·
On Topic
·
Off Topic
Multi layer Mobs?
[Tips]
ID:176255
Feb 2 2003, 11:32 am
Spoon
Just a question but...
How would i go about making a player on say Z2 have an icon on Z1 as well as the icon he sees?
-Spoon
p.s - thanks in advance...
Feb 2 2003, 12:10 pm
Garthor
mob
var/obj/clone
New()
clone = new()
clone.icon = icon
clone.icon_state = icon_state
clone.loc = locate(x,y,z-1)
Move(newLoc)
spawn() clone.Move(locate(newLoc.x,newLoc.y,newLoc.z-1))
..()
Feb 3 2003, 5:39 am
In response to
Garthor
Spoon
Thanks,
Could you help me out on how to cycle through these 'clones'?
Thanks again....
-SpoOn
Copyright © 2025 BYOND Software. All rights reserved.
var/obj/clone
New()
clone = new()
clone.icon = icon
clone.icon_state = icon_state
clone.loc = locate(x,y,z-1)
Move(newLoc)
spawn() clone.Move(locate(newLoc.x,newLoc.y,newLoc.z-1))
..()