Purpose: If u click on the chest u gunna sit on the chair like this:

It's possible for all players, maybe a nice suggest for a wedding party or something
! I added in my party room
!
Difficulty: 1 / 10
Server base: I used Czar (Should work on most)
Knowledge: Ctrl + f & C&P
Classes modified: Client.java
Let's begin:
Search for:
Code:
/*OBJECT CLICK ONE*/
OR
Code:
public void objectClick(int objectID, int objectX, int objectY, int face, int face2, int GateID) {
Add in there these 2 cases:
Code:
case 2380:
teleportToX = XXXX;
teleportToY = YYYY;
setAnimation(3363);
resetAnimation();
break;
case 375:
teleportToX = PPPP;
teleportToY = DDDD;
setAnimation(3363);
resetAnimation();
break;
XXXX: change to the X coords of your first chair
YYYY: change to the Y coords of your first chair
PPPP: change to the X coords of your second chair
DDDD: change to the Y coords of your second chair
Now only u have to add the objects
Every1 already know this but for the beginners:
Find:
Code:
public void NewObjects() {
Add there:
Code:
makeGlobalObject(XXXX, YYYY, 2380, -3, 10);//chest
makeGlobalObject(KKKK, LLLL, 1088, -3, 10);//chair
makeGlobalObject(PPPP, DDDD, 1088, -1, 10);//chair
makeGlobalObject(XXXX, YYYY, 375, -1, 10);//chest
XXXX: change to the X coords of your first chest
YYYY: change to the Y coords of your first chest
XXXX: change to the X coords of your second chest
YYYY: change to the Y coords of your second chest
KKKK: change to the X coords of your first chair
LLLLL: change to the Y coords of your first chair
PPPP: change to the X coords of your second chair
DDDD: change to the Y coords of your second chair
Credits: 100% me
I don't think so, but reply if this already has been posted!!