make the button logout work [warning!!!noob friendly]!!!!!!!!!!
ok ive just made this for some guy in the help forums cos he said his button logut dont work.
i just thaught y not post it here too.
ok if you have the logout bar but if u click on it and it dosnt work then do this
server source: all servers
knolage needed: how could i put this....a retard could do it
rating: 1/10
files modified: client.java
===========================================
in parseIncomingPackets
find this then inbatween the case 9154: and the break; add this
Code:
outStream.createFrame(109);
so it should look like this
Code:
case 9154:
outStream.createFrame(109);
break;
and if you cant find case 9154:
find case 185:
after this
Code:
case 185: //clicking most buttons
int actionButtonId = misc.HexToInt(inStream.buffer, 0, packetSize);
switch(actionButtonId) {
add
Code:
case 9154:
outStream.createFrame(109);
break;
so it should look like this
Code:
case 185: //clicking most buttons
int actionButtonId = misc.HexToInt(inStream.buffer, 0, packetSize);
switch(actionButtonId) {
case 9154:
outStream.createFrame(109);
break;