
Originally Posted by
Zak©
Is that why you switched to Itach's emulator.
Or are you stopping?
I said I switched to the revision of swfs that Neutrino runs.
Also I don't like development threads. I'll keep on releasing. But no development thread.
You can look at the source at:
https://github.com/QuacksterNET/SierraJAVA
(the packet handler is broken - I forgot to call the register function, I tried to upload the fixed one now; along with more features I coded, but the school network blocks port 22)
Pretty sure I am original.
--
(yes I know I don't use all the variables)
Code:
package sierra.habbohotel.rooms;
import java.util.ArrayList;
import java.util.List;
import sierra.network.clients.Session;
import sierra.packetparse.ServerMessage;
public class Room {
public int Id;
public int OwnerId;
public String OwnerName;
public String Name;
public String Description;
public String Model;
public int State;
public int Score;
public int Category;
public int Wall;
public int Floor;
public Boolean Pets;
public Boolean PetsCanEat;
public double Landscape;
public List<Session> SessionList;
public Room(int Id, int OwnerId, String OwnerName, String Name, String Description, String Model)
{
this.Id = Id;
this.OwnerId = OwnerId;
this.OwnerName = OwnerName;
this.Name = Name;
this.Description = Description;
this.Model = Model;
this.SessionList = new ArrayList<Session>();
}
public void SendUsers(ServerMessage Response)
{
for (Session Client : SessionList)
{
Client.Send(Response);
}
}
public void LeaveRoom(Session mSession)
{
this.SessionList.remove(mSession);
}
}
--
Thread request to be closed please. I need a break from development.