Jump to content
  • 0

Equipment menu and category redirection using getequipisequiped


Jayz

Question


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

I am trying to create custom crafting with an equipment menu. How can I redirect it to its correct category? For example, if I choose Armor from the menu, it should go to the Armor tab. This is the script I made, but I'm not sure how to properly retrieve the equipped equipment.

 

setarray .@eq[1], EQI_HEAD_TOP,EQI_ARMOR;
for(set .@i,1; .@i<getarraysize(.@eq); set .@i,.@i+1){
	if(getequipisequiped(.@eq[.@i])){
		set .@menu$,.@menu$+F_getpositionname(.@eq[.@i])+" ~ [ " + getequipname(.@eq[.@i]) + " ]";
		set .@equipped,1;
	} set .@menu$,.@menu$+":";
} set .@part,.@eq[select(.@menu$)];

if(getequipisequiped(.@eq[.@i]) == EQI_HEAD_TOP) {
mes "Wearing Top Headgear";
close;
}
if(getequipisequiped(.@eq[.@i]) == EQI_ARMOR) {
mes "Wearing Armor";
close;
}

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

Solve this question

 

Selects an option from the menu, it determines which equipment slot was selected (.@part) and checks if that slot is equipped using getequipisequiped.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...