Jump to content
  • 0

Requesting Exchanger and refiner.


AllHailToTheKing

Question


  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  11/22/11
  • Last Seen:  

hello rathena, can someone gave me a sure +10 refiner for HG only, that requires item. example. i want to refine my crown to +10 the npc will require item for example apple 10 apple for sure +10 HG. 

 

 

and if its not too much to ask i want to request another npc that exhcnage item. example i want to exchange my 10 apples to 1 yggbox.

 

 

Thanks in advance rAthena

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

http://www.eathena.ws/board/index.php?s=&showtopic=179885&view=findpost&p=989158

 

let's see ...

prontera,150,190,6    script    Refiner    899,{
    if ( countitem(.itemid) < 10 ) {
        mes "You don't have item";
        close;
    }
    for ( .@i = 0; .@i < 3; .@i++ )
        .@menu$ = .@menu$ +( ( getequipisequiped( .loc[.@i] ) )? getitemname( getequipid( .loc[.@i] ) ) : "<not equipped>" )+":";
    .@s = select( .@menu$ ) -1;
//    if ( !getequipisenableref( .loc[.@i] ) ) {
//        mes "this item cannot be refine";
//        close;
//    }
    if ( getequiprefinerycnt( .loc[.@s] ) == 10 ) {
        mes "the item already at max refine";
        close;
    }
    delitem .itemid, 10;
    while ( getequiprefinerycnt( .loc[.@s] ) < 10 )
        successrefitem .loc[.@s];
    close;
OnInit:
    .itemid = 512; // use which item to refine +10
    setarray .loc, EQI_HEAD_TOP, EQI_HEAD_MID, EQI_HEAD_LOW;
    end;
}

 

prontera,150,190,6    script    sdfsdfsdfds    899,{
    if ( countitem(512) >= 10 ) {
        delitem 512, 10;
        getitem 14232, 1;
    }
    end;
}
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  11/22/11
  • Last Seen:  

 

http://www.eathena.ws/board/index.php?s=&showtopic=179885&view=findpost&p=989158

 

let's see ...

prontera,150,190,6    script    Refiner    899,{
    if ( countitem(.itemid) < 10 ) {
        mes "You don't have item";
        close;
    }
    for ( .@i = 0; .@i < 3; .@i++ )
        .@menu$ = .@menu$ +( ( getequipisequiped( .loc[.@i] ) )? getitemname( getequipid( .loc[.@i] ) ) : "<not equipped>" )+":";
    .@s = select( .@menu$ ) -1;
//    if ( !getequipisenableref( .loc[.@i] ) ) {
//        mes "this item cannot be refine";
//        close;
//    }
    if ( getequiprefinerycnt( .loc[.@s] ) == 10 ) {
        mes "the item already at max refine";
        close;
    }
    delitem .itemid, 10;
    while ( getequiprefinerycnt( .loc[.@s] ) < 10 )
        successrefitem .loc[.@s];
    close;
OnInit:
    .itemid = 512; // use which item to refine +10
    setarray .loc, EQI_HEAD_TOP, EQI_HEAD_MID, EQI_HEAD_LOW;
    end;
}
prontera,150,190,6    script    sdfsdfsdfds    899,{
    if ( countitem(512) >= 10 ) {
        delitem 512, 10;
        getitem 14232, 1;
    }
    end;
}

 

 

Thanks for the reply annie.

 

but for some reasons the both npc is not appearing on my server.

 

[Error]: npc_parsesrcfile: Unknown syntax in file 'npc/custom/surerefiner.txt', line '1'. Stopping...
 * w1=prontera,155,190,6    script    Refiner    899,{
 * w2=
 * w3=
 * w4=
 
 
and
 
[Error]: npc_parsesrcfile: Unknown syntax in file 'npc/custom/itemexchange.txt', line '1'. Stopping...
 * w1=prontera,150,190,6    script    sdfsdfsdfds    899,{
 * w2=
 * w3=
 * w4=
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

akkarin just made a pastebin into our forum

now should be eliminate the problem the tabbing caused by {code} tag

http://rathena.org/board/pastebin/5jaxbnhp4a3l/type/athena/

http://rathena.org/board/pastebin/40ln8nw44o32/

PS: actually I just want to test the new pastebin system lol

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  11/22/11
  • Last Seen:  

akkarin just made a pastebin into our forum

now should be eliminate the problem the tabbing caused by {code} tag

http://rathena.org/board/pastebin/5jaxbnhp4a3l/type/athena/

http://rathena.org/board/pastebin/40ln8nw44o32/

PS: actually I just want to test the new pastebin system lol

 

 

i tried the item exchange the npc appear but its not clickable ..

 

and the refiner the npc wont show it at all.

 

btw thanks for helping me.

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