Currently Posted April 16, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Share Posted April 16, 2014 comodo,176,153,5 script Enchant Expert 626,{ mes "[Enchant Expert]"; mes "Hey, today might be your lucky day !!"; mes "Do you want to enchant your equipped armor ?"; next; mes "[Enchant Expert]"; mes "The enchant system give you a random stats from +1 to +10."; mes "Of course, the higher the stats, the lower the percentage."; next; .@equip = select( "Top","Armor","L-Hand","R-Hand","Garment","Shoe","Acc L","Acc R","Mid","Low" ); if ( !getequipisequiped( .@equip ) ) { mes "You do not have any equipment there."; close; } .@id = getequipid( .@equip ); .@ref = getequiprefinerycnt( .@equip ); .@card1 = getequipcardid( .@equip, 0 ); .@card2 = getequipcardid( .@equip, 1 ); .@card3 = getequipcardid( .@equip, 2 ); .@card4 = getequipcardid( .@equip, 3 ); if ( .@card1 == 255 || .@card1 == 254 ) { mes "I can't enchant a signed equipment."; close; } if ( .@card4 ) { mes "This armor has already enchanted."; close; } .@rand = rand(.totalchance); while ( ( .@rand = .@rand - .rate[.@r] ) >= 0 ) .@r++; .@o = rand(0,5); // orb of str/int/dex .... delitem2 .@id, 1,1, .@ref, 0, .@card1, .@card2, .@card3, 0; getitem2 .@id, 1,1, .@ref, 0, .@card1, .@card2, .@card3, 4700 + .@o * 10 + .@r; equip .@id; close; OnInit: setarray .rate, 55,50,45,25,20,5,4,3,2,1; // rate of getting +1 is 55%, +2 is 50% .... +10 is 10% ... while ( .@i < 10 ) { .totalchance = .totalchance + .rate[.@i]; .@i++; } end; } Remove "Top" "Mid" "Low" from the selection? Quote Link to comment Share on other sites More sharing options...
Sryx Posted April 17, 2014 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 520 Reputation: 64 Joined: 11/19/11 Last Seen: October 19, 2024 Share Posted April 17, 2014 .@equip = select( "Armor","L-Hand","R-Hand","Garment","Shoe","Acc L","Acc R" ); Quote Link to comment Share on other sites More sharing options...
Currently Posted April 17, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted April 17, 2014 ^ That's what I did. But when I clicked "Armor, it enchants the Top headgear. Quote Link to comment Share on other sites More sharing options...
Currently Posted April 19, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted April 19, 2014 Bump! Quote Link to comment Share on other sites More sharing options...
Capuche Posted April 20, 2014 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted April 20, 2014 .@equip = select( "","Armor","L-Hand","R-Hand","Garment","Shoe","Acc L","Acc R","","" ); 1 Quote Link to comment Share on other sites More sharing options...
Question
Currently
Remove "Top" "Mid" "Low" from the selection?
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.