Ok well i added a nice sexy jail where they cant talk or anything and I wanted to know what I add to make a person do an emote like 100 times non stop?
like p2.requestAnim(784, 10);?
Nope didnt work
Printable View
Ok well i added a nice sexy jail where they cant talk or anything and I wanted to know what I add to make a person do an emote like 100 times non stop?
like p2.requestAnim(784, 10);?
Nope didnt work
just use a event? or even the process method would work, would lagg alot + I don't see why you want him to do the emotes 100 times...
You can use event or process. Well declare a boolean for example public boolean inJail = false; public int timesDone = 0; and put that in player.java and then when u send the player to jail put like p2.inJail = true; then in process put:
Code:if (inJail && timesDone < 100) {
requestAnim(animId, 0);
timesDone++;
}