Hero Quest like DreamRO

magic2938

New member
Messages
29
Points
0
Github
gfire
PLSS TEACH ME HOW TO DO IT AND CANE IHAVE IT THANKS

 
Last edited by a moderator:
  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.

 
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

 
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 ?

 
but some one said that that quest needs databse and plugins to work.

 
Last edited by a moderator:
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)

Code:
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
 
Last edited by a moderator:
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.

 
Back
Top