• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Help with selections in rewards window!!! (1 Viewer)

nijhal

Member
Joined
Feb 22, 2006
RedCents
10¢
Okay, I have tried for the life of me to figure out why this code isint working to select faction as a reward for a task. I cant seem to figure it out. Maybe someone else out there who knows UI commands can help me.

If this pic shows up, you will see the selections in the windows I want.

Heres the code.

Rich (BB code):
Sub Finish
  /g we are done finish the mission
  :wait
  /if (${Window[RewardSelectionWnd].Open})  /goto :done
  /goto :wait
  :done
  /notify RewardSelectionWnd RewardSelectionOptionList listselect 2
  /delay 5s
  /notify RewardSelectionWnd RewardSelectionChooseButton leftmouseup 
  /delay 2s
  /cleanup
/return

attachment.php


Any help is much appriciated.
 
use RewardSelectionItemList, RewardSelectionOptionList is for the left column where it has the npc selected

Rich (BB code):
<Listbox item = "RewardSelectionOptionList">
		<ScreenID>RewardSelectionOptionList</ScreenID>
		<DrawTemplate>WDT_Inner</DrawTemplate>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>0</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>180</CX>
			<CY>100</CY>
		</Size>
		<Columns>
			<Width>1000</Width>
			<Heading>Reward Choices:</Heading>
		</Columns>
		<Columns>
			<Width>0</Width>
		</Columns>
		<Style_Border>true</Style_Border>
		<Style_VScroll>true</Style_VScroll>
	</Listbox>

so:

Rich (BB code):
Sub Finish
  /g we are done finish the mission
  :wait
  /if (${Window[RewardSelectionWnd].Open})  /goto :done
  /goto :wait
  :done
  /notify RewardSelectionWnd RewardSelectionItemList listselect 2
  /delay 5s
  /notify RewardSelectionWnd RewardSelectionChooseButton leftmouseup 
  /delay 2s
  /cleanup
/return
should work.
 
I tried...

Rich (BB code):
/notify RewardSelectionWnd RewardSelectionItemList listselect 2

Still not selecting anything. And I cant get the button press to work either.

Damn this is just frustrating.
 
Help with selections in rewards window!!!

Users who are viewing this thread

Back
Top