[REQUEST] Option Scroll

iCORE

New member
Messages
393
Points
0
Location
Halcyon Ragnarok
Github
Naori
Emulator
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:




 
Last edited by a moderator:
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. 

 
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.

 
Back
Top