Jump to content
  • 0
Sign in to follow this  
Nash

Requesting For >>> Derefiner And Custom Refiner

Question

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  :meow:
 

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 0

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.

Share this post


Link to post
Share on other sites
  • 0

try

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;

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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