What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

How to click a RemoteButton

shayooou

New Member
Joined
Sep 29, 2020
Messages
3
I want to vote for person with specified index after finishing dungeon.I use the code 'RaptureAtkUnitManager.GetWindowByName("VoteMvp").SendAction(1, 3, 0); '

but it only can vote for first player in 'VoteMvp' window.

Can i click a RemoteButton for custom choice? or What params with method 'SendAction' can fill my needs.

'RaptureAtkUnitManager.GetWindowByName("VoteMvp").FindButton(index + 2)'
this can get the specified player button,but i dont know how to activate it.
 
1,3,1 probably votes for the second person etc. No easy way to 'click' a remotebutton sadly afaik.
 
ulong playernumber = 1;
RaptureAtkUnitManager.GetWindowByName("VoteMvp").SendAction(2, 3, 0, 3, playernumber);
 
Back
Top