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

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.

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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