@
zakraj8 as far as i am aware 184.169.211.37 is not a RotMG server, this is a list of valid servers.
USWest 50.18.113.133
USMidWest 107.22.218.252
EUWest 46.137.187.86
USEast 184.72.218.199
AsiaSouthEast 46.137.247.5
USSouth 107.22.231.55
USSouthWest 50.18.176.194
EUEast 46.51.176.123
EUNorth 176.34.240.11
EUSouthWest 176.34.240.126
EUWest2 46.137.143.87 //ec2-46-137-143-87.eu-west-1.compute.amazonaws.com
USEast3 50.19.47.160 //ec2-50-19-47-160.compute-1.amazonaws.com
USWest2 184.169.130.44
USMidWest2 174.129.56.145 //ec2-174-129-56-145.compute-1.amazonaws.com
USEast2 23.21.243.164
USNorthWest 184.169.131.108
USSouth2 107.20.55.255 //ec2-107-20-55-255.compute-1.amazonaws.com
EastAsia 46.137.218.95
USSouth3 204.236.195.161 //ec2-204-236-195-161.compute-1.amazonaws.com
EUSouth 176.34.71.225 //ec2-176-34-71-225.eu-west-1.compute.amazonaws.com
EUNorth2 46.137.38.91 //ec2-46-137-38-91.eu-west-1.compute.amazonaws.com
I have not looked at the proxy, so forgive me if i am far off the mark but i am assuming the first step towards you getting it working is to use a valid server.
---------- Post added at 07:27 PM ---------- Previous post was at 06:01 PM ----------
How do you make a player shoot? I am trying to shoot on a wizard directly east, however i am having difficulties. This is as far as i got, from watching ALLYSHOOT_Packet s i am guessing my containerType is 2711 and wizards appear to send two shoot packets at the same time. This is what i have so far, but it doesn't work.
for (int i = 0; i < 40; i = i + 2){
PLAYERSHOOT_Packet shoot = new PLAYERSHOOT_Packet();
shoot.angle_ = (float) 0;
shoot.bulletId_ = i;
shoo*****ntainerType_ = 2711;
shoot.startingPos_ = gCli.gCon.world.getPosition();
shoot.time_ = gCli.gCon.world.getCurrentTick();
PLAYERSHOOT_Packet shoot2 = new PLAYERSHOOT_Packet();
shoot2.angle_ = (float) 0;
shoot2.bulletId_ = i + 1;
shoot2.containerType_ = 2711;
shoot2.startingPos_ = gCli.gCon.world.getPosition();
shoot2.time_ = gCli.gCon.world.getCurrentTick();
gCli.gCon.sendPacket(shoot2);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
Thanks in advance for any help.