apollo-rsps / apollo

An open-source Java game server suite designed to be lightweight, fast, and secure.
ISC License
184 stars 141 forks source link

"The Survival Expert gives you ..." dialogue uses the incorrect model #176

Open Major- opened 8 years ago

Major- commented 8 years ago

One of the survival expert's dialogues currently just displays a bronze axe with the message "The Survival Expert gives you a tinderbox and a bronze axe!", when it should actually display both the tinderbox and the bronze axe, as shown below:

Dialogue that displays both the tinderbox and the bronze axe images

Someone just needs to work out what dialogue should be displayed here (it might be a unique model rather than an item used here).

WizardJesse1 commented 8 years ago

there are 2 different interfaces for 1 item and 2 items you just need the interface basically and instead of making a new line on normal dialogues you need to do a
since jagex never did more lines for the dialogue

Promises commented 7 years ago

found this in one of my old PI servers: c.getPA().sendFrame126(text1, 6232); c.getPA().sendFrame126(text2, 6233); c.getPA().sendItemOnInterface(6235, 170, item1); c.getPA().sendItemOnInterface(6236, 170, item2); c.getPA().sendChatInterface(6231);

maybe I'll add it tomorrow.

Tomm0017 commented 5 years ago

@Major- Was the survival guide removed on the kotlin-experiments branch? I assume he needs to be spawned in + given his dialogs back through a kotlin plugin? Either way - should this issue be removed/replaced with the new issue?

Major- commented 5 years ago

Tutorial island as a whole isn't implemented in kotlin-experiments, but this issue will still exist when the ruby code is ported over, so I think it can stay