kpreisser / MouseClickSimulator

Mouse Click Simulator for Toontown Rewritten and Corporate Clash
MIT License
26 stars 17 forks source link

Is Doodle Interaction Panel one of the actions built-in? #57

Closed JJBrasch closed 6 months ago

JJBrasch commented 6 months ago

Is Doodle Interaction Panel one of the actions built-in? You said in the Development section on the code overview that:

"Currently, the implementation contains actions for pressing keys, writing text, SpeedChat, Doodle Interaction Panel and the Automatic Fishing Function. Furthermore, an action for planting a flower is supported."

If the Doodle Interaction Panel is an action like SpeedChat is, how is the action utilized?

Ex. here is some code I tried using but it fails to register that "Doodle Interaction Panel" is a valid action

' <?xml version="1.0" encoding="utf-8"?>

Dance Twice Then Scratch This project instructs the pet to 'Dance' twice and then performs a 'Scratch' through the Doodle Interaction Panel.

' Anything that should be changed to make this a valid xml?

kpreisser commented 6 months ago

Hi! Yes, the doodle panel should work. You can use one of the following:

<DoodlePanel button="Feed" />
<DoodlePanel button="Scratch" />
<DoodlePanel button="Call" />

(The names of the available actions are listed in the XmlProjectDeserializer class.)

Thanks!

JJBrasch commented 6 months ago

Awesome!!!! Thank you @kpreisser