Jump to content
  • 0
Sign in to follow this  
iCORE

[REQUEST] Option Scroll

Question

i would like to request a scroll that gives "Item Option" if use. and a scroll that removes the "Item Option"

its like flyff Awakening System

http://flyff-wiki.webzen.com/wiki/Awakening

 

for more info:

(1)make a configuration on what equipment to choose.

(2)Scroll of Awake <--- 100% give fix Item Option Stats to Slot 1 and so on... 

Slot 1 = STR + 3

Slot 2 = EMPTY

Slot 3 = EMPTY

Slot 4 = EMPTY

Slot 5 = EMPTY

(3)then if i use scroll of awake again it will fill up Slot 2 and and so on up to Slot 5 and when all slots are filled, then i can no longer use the scroll.

Scroll of Revert <--- Choose the specific Item Option Stats that i want to remove.

 

refrence:

 

Edited by iCORE

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0
	function	script	Option_Acc	{
	mes "blah";
//	dispbottom getequipid(EQI_ACC_L) +" "+ getequipid(EQI_ACC_R);
	next;
	if ( getequipid(EQI_ACC_L) == -1 && getequipid(EQI_ACC_R) == -1 ) {
		mes "You don't have Accessory equipped";
		close;
	}
	.@s = select( getequipid(EQI_ACC_L)? getequipname(EQI_ACC_L) : "",  getequipid(EQI_ACC_R)? getequipname(EQI_ACC_R) : "" ) + 6;
//	dispbottom .@s +"";
	if ( getequipoption( .@s, 1, IT_OPT_INDEX ) ) {
		mes "this Accessory has already enchanted with Item Options";
		close;
	}
	mes "do you want to add +STR to this Accessory?";
	next;
	if ( select( "Yes", "No" ) == 2 ) close;
	setequipoption .@s, 1, VAR_STRAMOUNT, 1;
	close;
}

i have this and it only fill Slot 1. 

Share this post


Link to post
Share on other sites
  • 0
Just now, Virtue said:

this feature only fills one slot at a time though. haven't found a way to make it so like when it drops it has different options.

do you know how to make it fills up to 5 slots?

 

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.