ID:272891
 
im trying to make the players icon transform into a fox then when they transform back their original icon appears instead
Sounds like you are editing someone's else Naruto game. I try not to help people who publish rips as theyr own work.

Lookup on 'icon' var
In response to Ripiz
i did im rying to make it where it will delete your characters icon but save it so when you return to your base form it can load it up instead of the player going invisible
In response to B-mut
mob
var/s_icon
verb/transform()
src.s_icon = src.icon
src.icon = 'fox.dmi'
sleep(100) //10 seconds
src.icon = src.s_icon
In response to Spunky_Girl
that might work in your code but it wont in mine because i dont have a transform proc defined anywhere.
In response to B-mut
B-mut wrote:
that might work in your code but it wont in mine because i dont have a transform <s>proc</s> verb defined anywhere.

It's an example. Mould it to whatever you need it for.