Jump to content
  • 0

request for script crafting system


Question

Posted

i could see some script with Crafting System which you can Craft with using the Materials Required...

This is what i would like in the 'Features'

+1 silk robe- 100%

+2 silk robe-90%

+3silk robe - 80%

+4 silk robe-70%

+5 silk robe-60%

+6 silk robe-50%

+7 silk robe-40%

+8 silk robe -30%

+9 silk robe-20%

+10 silk robe-10%

or maybe similar this....i want the item random and possible make the item ''fails''

and 1 more thing i have done make script getitem but rathena say its error

prontera,156,187,2 script Bunny Novice Set 105,{}
mes "[Novice Set]";
mes "Hello!! and Welcome to SuperMassiveRO";
mes "Are you Novice??";
menu "Yeah!!",yes,"No!",no,;
yes:
 mes "[bunny Novice Set]";
 mes "ok here you go";
 getitem 2415,1; //ID of Item, How Much
 getitem 5218,1; //ID of Item, How Much
getitem 2358,1; //ID of Item, How Much
 getitem 2564,1; //ID of Item, How Much
 getitem 13050,1; //ID of Item, How Much
 getitem 2136,1; //ID of Item, How Much
 close;

 no:
 close:

im not sure what wrong.. if have a mistake pls let me know tq

8 answers to this question

Recommended Posts

Posted

this is more like a Refine System in RO...just edit your refine rate here

trunk/db/re/refine_db.txt

when the refine process failed..your item will be destroyed.


for the script....

your header is wrong....

should be

prontera,156,187,2 script Bunny Novice Set 105,{

there should be a syntax error...at menu part shoud be...

menu "Yeah!!",yes,"No!",no;

you should take a look on the map console to check for script error...

Posted

try this

prontera,156,187,2 script Bunny Novice Set 105,{
mes "[Novice Set]";
mes "Hello!! and Welcome to SuperMassiveRO";
mes "Are you Novice??";
menu "Yeah!!",yes,"No!",no;
yes:
 if( !#Free ){
 mes "[bunny Novice Set]";
 mes "ok here you go";
 getitem 2415,1; //ID of Item, How Much
 getitem 5218,1; //ID of Item, How Much
 getitem 2358,1; //ID of Item, How Much
 getitem 2564,1; //ID of Item, How Much
 getitem 13050,1; //ID of Item, How Much
 getitem 2136,1; //ID of Item, How Much
 set #Free,1;
 }else{
 mes "You already have claimed your Freebies.";
 close;

 no:
 close;
}

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...