Requesting For >>> Derefiner And Custom Refiner

Nash

New member
Messages
86
Points
0
Hi Guys,
i need some scripts please Help me ^^
i need a 1 click derefiner which makes all equips +0
and a custom refiner when u click it a box pops
up you have to input the number 
For ex if i put 45 my all equips get +45
if i put 88 all equips +88

Thx in advance

Regards,
Nash 
default_ani_meow.gif
 

 
Few quick questions:

Fail rate?

Can refine usually unrefinable items?

 
Hmm fail rate 0!!
Sucess Rate 100%
No Cannot Refine Unrefinable Items ^^ 

default_rolleyes.gif


 
I need a new var, the max refine value, but you can set it without any problems.

Sadly, half my screen broke yesterday and I can't script anymore unless I get it repaired (well, I can, but it's really annoying), so this will have to wait till then (I suppose it'll take around a week) or someone else makes this script for you.

If you want to make it yourself (give it a try! In the worst case, correcting your NPC would be way faster than making one!), just see how a NPC script is declared and especially how the 'input', and 'successrefitem', 'downrefitem', script commands work (refer to 'getequipid' for equipment slots). Remember to 'end' your script.

Sorry for this inconvenience.

 
try

Code:
for( .@i = 1; .@i <= 10; .@i++ )	.@menu$ = .@menu$ + getequipname( .@i )+":";.@equip = select( .@menu$ );.@refine = select( "Refine","De-refine" );mes "how many time ?";input .@amount,0,100;for( .@i = 0; .@i < .@amount; .@i++ )	if( .@refine == 1 )		successrefitem .@equip;	else		downrefitem .@equip;mes "Done";close;
 
Back
Top