Jump to content
  • 0
Sign in to follow this  
magic2938

Hero Quest like DreamRO

Question

8 answers to this question

Recommended Posts

  • 0

  1. We don't have access to DreameRO, especially its databases and scripts.
  2. You've got enough documentation to do this since I believe they didn't use any special documentation other than programming basics you can learn through the Internet and this manual.

Try to teach yourself, is the best answer I can give you.

Share this post


Link to post
Share on other sites
  • 0

sir jabote plss help me im a big fan of hercules because of its plugins and projects but i need a automated quest like hero system can you tech me or teach me new update on this emulator plugins

Share this post


Link to post
Share on other sites
  • 0

http://playdreamerro.blogspot.com/2010/11/hero-quest-guide.html

http://skyxileria.blogspot.com/2014/03/dreamer-ro-hero-quest.html

 

sigh ... its just item collecting quest

hunt this monster hunt that monster then you get imba weapon

 

almost everything has been covered by script_commands.txt

and there are some already release free by members

like rebirth system, item collection quest

 

just need some basic scripting knowledge and you can get this covered

 

how about you show us how you write a item exchanger script ?

Share this post


Link to post
Share on other sites
  • 0

no I don't think so

everything there can be reproduce entirely with scripting

 

EDIT: errr ... yeah making new monsters need mob_db.txt and mob_skill_db.txt

but I don't think ever need to use plugin at all

 

I'm sure you can do this right now ... even with newbie scripting method

except for the Heavenly Flower Quest, little bit harder because it looks like a pvp/woe script

 


 

every scripter has to start their journey by making these 3 scripts

1. item exchanger

2. warper

3. a simple server manager ... can be anything

 

and these kind of script can be done with just mes next menu close

 

 

now I'm going to revise back the scripting technique I used 7 years ago (hahaha)

prontera,144,168,6	script	Brysinggamen Quest	117,{	mes "collect 50 red pot, 20 orange pot, 10 white pot";	mes "and you get a Brysinggamen !";	next;	menu "yes I want", L_yes, "not interested", L_no;L_yes:	if ( countitem(501) < 50 ) goto L_not_enough;	if ( countitem(502) < 20 ) goto L_not_enough;	if ( countitem(504) < 10 ) goto L_not_enough;	if ( !checkweight(2630,1) ) goto L_overweight;	delitem 501, 50;	delitem 502, 20;	delitem 504, 10;	mes "There you go !";	getitem 2630, 1;	close;L_not_enough:	mes "you don't bring enough items";	mes "collect 50 red pot, 20 orange pot, 10 white pot";	close;L_no:	mes "ok come back soon";	close;L_overweight:	mes "you are overweight, put some items into storage and come back again.";	close;}
try put all these items from that website into this script and show me Edited by AnnieRuru

Share this post


Link to post
Share on other sites
  • 0

What!? You mean Annieruru started off as a noob!! Blasphemy lol jk. Yeah, this looks to be a simple quest type npc. Nothing too custom really except the context.

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.