ItsFree Posted January 18 Share Posted January 18 Hi i would like some help i found this i like it but i would like a edit but im not enough experienced to do by myself yet. Similar like: but what i want... I want same but only work from +8 to +9 i mean NOT from 1~8 to +9, is just from +8 to +9, is possible to make it works? Thanks Quote Link to comment Share on other sites More sharing options...
0 Magnetix Posted January 18 Share Posted January 18 Find //Check to see if the items is already +10 if(getequiprefinerycnt([email protected]) >= 10) { getitem 542,1; dispbottom "I can't refine this any more. This is as refined as it gets!"; close; } replace with //Check refinement if ( getequiprefinerycnt([email protected]) < 8 || getequiprefinerycnt([email protected]) >= 10 ) { getitem 542,1; dispbottom "I can only refine +8 and +9 items!"; close; } Quote Link to comment Share on other sites More sharing options...
0 ItsFree Posted January 18 Author Share Posted January 18 Thanks! tried but got this: whole script: function script RefineScroll { set [email protected]$,""; for( set [email protected],1; [email protected] = 8; set [email protected],[email protected]+1 ) { if( getequipisequiped([email protected]) ) set [email protected]$, [email protected]$ + [email protected]$[[email protected]] + "-" + "[" + getequipname([email protected]) + "]"; set [email protected]$, [email protected]$ + ":"; } set [email protected],select([email protected]$); // ========================= if(!getequipisequiped([email protected])) { getitem 60712,1; dispbottom "You're not wearing anything there that refines!"; close; } //Check if the item is refinable... if(!getequipisenableref([email protected])) { getitem 60712,1; dispbottom "There is no way that this item could be refined!"; close; } //Check refinement if ( getequiprefinerycnt([email protected]) < 8 || getequiprefinerycnt([email protected]) >= 10 ) { getitem 542,1; dispbottom "I can only refine +8 and +9 items!"; close; } successrefitem [email protected]; dispbottom "There you go, Refine Scroll works like a charm :D"; close; } Quote Link to comment Share on other sites More sharing options...
Hi i would like some help i found this i like it but i would like a edit but im not enough experienced to do by myself yet.
Similar like:
but what i want... I want same but only work from +8 to +9 i mean NOT from 1~8 to +9, is just from +8 to +9, is possible to make it works?
Thanks
Link to comment
Share on other sites