Jump to content
  • 0

Gold room script request :)


Shaynne

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/12
  • Last Seen:  

Hi, sir can I have a request for this kind of Gold Room please.. 

 

-this event opens every 2 hours.

-NPC announces 3 min before

(NPC is hidden and will appear in the said time. and will disappear again after the event.)

-NPC appears and announces the event is opened.

-There will be a fee of 100,000 zeny to enter

-(Poring monster only) Poring drops gold coin not gold points

-The map is skill off 

-Event last for 10 minutes

-Kicks player if they are afk for 1 minute

-There is an npc inside the event which can warp players

out of the map and back to the players save point

 

Thanks in advance.  :)
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/12
  • Last Seen:  

ive solved it. just compared some of the gold room scripts. im learning alot..  ^_^

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  354
  • Reputation:   3
  • Joined:  02/17/13
  • Last Seen:  

idk but skill off

is easy

[ conf -> mapflag -> noskill ] Add

ur_gold_map	mapflag	noskill


check thise may help u

i rlly didn't try it but i found it

 

- script freakingevent#disable -1,{
OnInit:
disablenpc "munakajata";
disablenpc "escapepad";
setarray .npc$[0],"[Escape Pad]","[Bat Mobile]";
set hptimer,0;
set isfirstime,0;
end;
}
- script freakingevent -1,{
OnClock000:
OnClock0200:
OnClock0400:
OnClock0600:
OnClock0800:
OnClock1000:
OnClock1200:
OnClock1400:
OnClock1600:
OnClock1800:
OnClock2000:
OnClock2200:
goto startfreakinevent;
startfreakinevent:
announce "A freaking event will begin in 3 minutes!",0;
sleep2 180000;
initnpctimer;
set hptimer,1;
announce "Talk to me now if you wanna join! The event has already started!",0;
enablenpc "munakajata";
enablenpc "escapepod";
OnTimer3600000:
announce "Event is finish!",0;
set isfirstime,0;
disablenpc "munakajata";
disablenpc "escapepad";
set hptimer,0;
warp "prontera",151,181;
stopnpctimer;
end;
}
prontera,104,68,3 script munakajata 413,{
   mes .npc$[1];
   mes "Hello, What can I do for you?";
   next;
   menu "Join the freaking event",-,"Leave",leave;
   if(isfirstime == 0){
   set isfirstime,1;
   set Hp,Hp/2;
   warp new_3-1,100,100;
   initnpctimer;
   goto chicken;
}
   else {
   mes "You can only register once per instance of this event!";
   close;
leave:
  close;
}
Chicken:
   OnTimer1000:
   getmapxy(.mapname$,.mapx,.mapy,0,strcharinfo(0));
   if(.mapname == "new_3-1"){
   set Hp,Hp-1000;
   set Sp,Sp-500;
   set Zeny,Zeny+1000;
   }
   if(hptimer == 0)
   stopnpctimer;
}
new_3-1,104,68,3 script escapepad 413,{
   mes .npc$[0];
   mes "Yo, wanna go?";
   next;
   warp "prontera",151,181;
}


if something wrog check thise link http://rathena.org/board/topic/74389-other-gold-room-event/

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/12
  • Last Seen:  

Thanks for giving that link sponge, just that I can only edit simple scripts, editing that script makes me  /panic hope you / someone can provide me the script Im looking for.  And thanks for the response, it means a lot.  ^_^

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  354
  • Reputation:   3
  • Joined:  02/17/13
  • Last Seen:  

ur wlc ^_^

  • Upvote 1
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...