Jump to content
  • 0

HELP PLS!!


Musika6988

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  53
  • Reputation:   6
  • Joined:  09/09/13
  • Last Seen:  

Can i pls ask for a favor??
 Can you pls help me a little with my refiner script?
I just want this to like, detect the weapon refine first.. If the weapon is only +1,2,3,4,5,6,7,8,9 it will say you lack refine level.. and if it's +10, then it will proceed to the mechanics.. just the first line for detecting if it's +10..
Hope you could spare a couple of seconds.. /sob
heres the script by the way..

if(getequiprefinerycnt(.@part) >= 10) {
mes "[Nepthalie]";
mes "It seems I have no business with you.";
close;
}else{
mes "[Esmeralda]";
mes "Seems you are almost to awaken your ^CC0000Rusty Weapon?^000000!";
mes "Do you want to awaken its true power now?^000000!";
next;
if(select("Yes:No") == 2) {
mes "[Esmeralda]";
mes "Okay just let me know when you are ready to harvest that great power.";
close;
}

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  333
  • Reputation:   67
  • Joined:  09/05/12
  • Last Seen:  

42 minutes ago, Musika6988 said:

Can i pls ask for a favor??
 Can you pls help me a little with my refiner script?
I just want this to like, detect the weapon refine first.. If the weapon is only +1,2,3,4,5,6,7,8,9 it will say you lack refine level.. and if it's +10, then it will proceed to the mechanics.. just the first line for detecting if it's +10..
Hope you could spare a couple of seconds.. /sob
heres the script by the way..

if(getequiprefinerycnt(.@part) >= 10) {
mes "[Nepthalie]";
mes "It seems I have no business with you.";
close;
}else{
mes "[Esmeralda]";
mes "Seems you are almost to awaken your ^CC0000Rusty Weapon?^000000!";
mes "Do you want to awaken its true power now?^000000!";
next;
if(select("Yes:No") == 2) {
mes "[Esmeralda]";
mes "Okay just let me know when you are ready to harvest that great power.";
close;
}

Try to change "if(getequiprefinerycnt(.@part) >= 10)" to "if(getequiprefinerycnt(.@part) < 10)".
Because if your item is +10 it will return the message "It seems I have no business with you." if you use the >= 10.
Try to make it < 10 and check it.

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...