Jump to content
  • 0

request for script crafting system


lunawany88

Question


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

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

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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

Link to comment
Share on other sites


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

ok thnks i try it.. i will update if it still get error tq

Emistry

can u give a example for syntax error...at menu part...

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

this is answer...already provided in above post

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

Link to comment
Share on other sites


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

huhu solve it tq emistry

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

@luna

- please put a job check in your script if you dont want your player spam your npc.

Link to comment
Share on other sites


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

GM Takumirai

how?? because before this i have put it.. but its error.. canu give a example??

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

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;
}

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