Jump to content
  • 0

requesting gold room


donkeyg

Question


  • Group:  Members
  • Topic Count:  344
  • Topics Per Day:  0.08
  • Content Count:  1060
  • Reputation:   1
  • Joined:  02/13/12
  • Last Seen:  

do people have more gold room script please except the emistry's script

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

A Gold Room is not just a Script,you'll also have to add a Mob,who drops items like Gold or Treasure Box,so you can make a Warper for your Gold Room and then there are the Mobs spawned inside.

So you could use something like this :

prontera,164,166,3 script Gold Room 865,{
set .@n$,"^0000FF[ Gold Room ]^000000";
mes .@n$;
mes "Hello "+strcharinfo(0)+",do you want me to warp you into ^FF0000XXX RO's Gold Room^000000?";
next;
switch(select("Yes,sure.:No,bye")) {
case 1:
next;
mes .@n$;
mes "Okay I'm going to warp you!";
next;
warp "YOURGOLDROOMMAP",220,201;
close;
end;
case 2:
mes .@n$;
mes "Okay,come back when you need my Service!";
close;
}
}
YOURGOLDROOMMAP mapflag nowarpto
YOURGOLDROOMMAP mapflag nosave
YOURGOLDROOMMAP mapflag nomemo
YOURGOLDROOMMAP,0,0,0,0 monster YOURGOLDROOMMONSTER YOURMOBID,700,1000,0,0

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   1
  • Joined:  06/29/12
  • Last Seen:  

erm how to make gold drop percentage hard ?? at what lines i should edit ??

Link to comment
Share on other sites


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

edit your mob_db if you are using the script posted at above.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

can anyone pls explain the numbers in this part???

YOURGOLDROOMMAP,0,0,0,0 monster YOURGOLDROOMMONSTER YOURMOBID,700,1000,0,0

THX !

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  331
  • Reputation:   63
  • Joined:  11/29/11
  • Last Seen:  

prontera,164,166,3 script Gold Room 865,{
mes "^0000FF[ Gold Room ]^000000";
mes "Hello "+strcharinfo(0)+",do you want me to warp you into ^FF0000 Gold Room^000000?";
next;
switch(select("Yes,sure.:No,bye")) {
case 1:
 next;
 mes "^0000FF[ Gold Room ]^000000";
 mes "Okay I'm going to warp you!";
 next;
 warp "ordeal_1-2",0,0;
 close;
 end;
case 2:
 mes "^0000FF[ Gold Room ]^000000";
 mes "Okay,come back when you need my Service!";
 close;
}
OnInit:
removemapflag "ordeal_1-2",mf_nowarp;
monster "ordeal_1-2",0,0,"Gold Monster",1023,200,strnpcinfo(0)+"::OnKill";
end;
OnKill:
monster "ordeal_1-2",0,0,"Gold Monster",1023,1,strnpcinfo(0)+"::OnKill";
if(rand(100)<25){
getitem 969,1;
}
end;
}

It has 25% chance to get 1 gold.

Just change

if(rand(100)<25){

If you want to change percentage

Edited by Dastgir Pojee
Link to comment
Share on other sites


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

can anyone pls explain the numbers in this part???

YOURGOLDROOMMAP,0,0,0,0 monster YOURGOLDROOMMONSTER YOURMOBID,700,1000,0,0

THX !

erm...i think wiki will give you the best answer you want....

refer this Permanent_Monster_Spawn

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

THX EMISTRY...I'll try adding one later !!!

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