/* */ package NET.worlds.network; /* */ /* */ import NET.worlds.scape.Drone; /* */ import java.io.IOException; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public class disappearActorCmd /* */ extends receivedNetPacket /* */ { /* */ public static final byte DISAPPEARACTORCMD = 11; /* */ /* */ public disappearActorCmd() /* */ { /* 48 */ this._commandType = 11; /* */ } /* */ /* */ /* */ void parseNetData(ServerInputStream data) /* */ throws IOException /* */ {} /* */ /* */ void process(WorldServer _serv) /* */ throws Exception /* */ { /* 59 */ NetworkObject o = _serv.getObject(this._objID); /* 60 */ if ((o instanceof Drone)) { /* 61 */ ((Drone)o).disappear(); /* */ } /* */ } /* */ /* */ /* */ public String toString(WorldServer serv) /* */ { /* 68 */ return "DISAPPR " + this._objID.toString(serv); /* */ } /* */ } /* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\network\disappearActorCmd.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */