Jump to content
  • 0

Request for Safe +7 Refiner..


primeRO

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  10/05/12
  • Last Seen:  

Can I request script of Item Refiner which is like this:

"I will choose how much to refine the item"

"Safety refine level (+7)"

"I changed my mind"

this is like the MYRO refiner ^^..

thanks

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

/npc/merchant/refine.txt

prt_in,63,60,0 script Hollgrehenn 85,{
callfunc "refinemain","Hollgrehenn",0;
end;
}

change to

prt_in,63,60,0 script Hollgrehenn 85,{
callfunc "refinemain","Hollgrehenn",1;
end;
}

Edited by darristan
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  06/10/12
  • Last Seen:  

/npc/merchant/refine.txt
 prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",0; end; } 

change to

 prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } 

Sir I already change the @safe to 7

case 0:  //Refine Armor
set .@price,2000;
set .@material,985;
set .@safe,7;
break;
case 1:  //Refine Level 1 Weapon
set .@price,50;
set .@material,1010;
set .@safe,7;
break;
case 2:  //Refine Level 2 Weapon
set .@price,200;
set .@material,1011;
set .@safe,7;
break;
case 3:  //Refine Level 3 Weapon
set .@price,5000;
set .@material,984;
set .@safe,7;
break;
case 4:  //Refine Level 4 Weapon
set .@price,20000;
set .@material,984;
set .@safe,7;
break;
case 5:  //Refine other stuff?
set .@price,2000;
set .@material,985;
set .@safe,7;
break;

but when I'm upgrading...the refiner said "you will cost you 7 elunium and 14000z"

when I hit "yes" it will just upgrade in +4 instead of 7..

but my 7pcs elunium will disappear..

and also it will not be safe If i continue to upgrade it from +7...from +4 to +5 it will destroy..

how can I fix it?

Edited by Emistry
Please use [CODEBOX] or Attachments for long contents.
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  10/05/12
  • Last Seen:  

/npc/merchant/refine.txt
 prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",0; end; } 

change to

 prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } 

Sir I already change the @safe to 7

case 0:  //Refine Armor
set .@price,2000;
set .@material,985;
set .@safe,7;
break;
case 1:  //Refine Level 1 Weapon
set .@price,50;
set .@material,1010;
set .@safe,7;
break;
case 2:  //Refine Level 2 Weapon
set .@price,200;
set .@material,1011;
set .@safe,7;
break;
case 3:  //Refine Level 3 Weapon
set .@price,5000;
set .@material,984;
set .@safe,7;
break;
case 4:  //Refine Level 4 Weapon
set .@price,20000;
set .@material,984;
set .@safe,7;
break;
case 5:  //Refine other stuff?
set .@price,2000;
set .@material,985;
set .@safe,7;
break;

but when I'm upgrading...the refiner said "you will cost you 7 elunium and 14000z"

when I hit "yes" it will just upgrade in +4 instead of 7..

but my 7pcs elunium will disappear..

and also it will not be safe If i continue to upgrade it from +7...from +4 to +5 it will destroy..

how can I fix it?

Yeah his right

how to fix it?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

Change the value in /db/re/refine_db.txt

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  3
  • Reputation:   0
  • Joined:  04/10/13
  • Last Seen:  

 70, 4,7, 100,100,100,100, 60, 40, 40, 20, 20, 10,    // Armor
  2, 3,7, 100,100,100,100,100,100,100, 60, 40, 20,    // Lv.1 Weapons
  3, 5,6, 100,100,100,100,100,100, 60, 40, 20, 20,    // Lv.2 Weapons
  5, 8,5, 100,100,100,100,100, 60, 50, 20, 20, 20,    // Lv.3 Weapons
  7,13,4, 100,100,100,100, 60, 40, 40, 20, 20, 10,    // Lv.4 Weapons

which one of these is for the safe refine?

 
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

post-5984-0-55424100-1365682493_thumb.png

 

In the red square

100 = 100% refine = safe refine

 

Just before the red square, 7 = Safe level limit for example in the first line.

 

 

// Stats per level for safe upgrade, Stats per level after safe limit, Safe level limit, Lv.1 %, Lv 2 %, Lv.3%, ect...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  3
  • Reputation:   0
  • Joined:  04/10/13
  • Last Seen:  

Thank you!  /no1

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...