God Quest

05/15/2011 17:29 lukester#1
Do anyone here have a query and NPC for the god quest like in ForgottenRealm? If so please post it here and if your offering it for money ill pay for it in EliteGold (maxiume 200)
05/15/2011 18:24 Eurion#2
The God quest on Forgotten Realms is a unique quest with over 1,800 lines of action codes. Roughly 28.00 USD isn't anywhere near enough for the time it would take to code something up like that. It took me roughly six months of testing and rewriting to get it to where it is now.
05/15/2011 20:38 lukester#3
Quote:
Originally Posted by Eurion View Post
The God quest on Forgotten Realms is a unique quest with over 1,800 lines of action codes. Roughly 28.00 USD isn't anywhere near enough for the time it would take to code something up like that. It took me roughly six months of testing and rewriting to get it to where it is now.
O lordy then. If you would help me through Team Veiwer i would appreciated it ill buy more elite*gold right now.
05/15/2011 21:32 Eurion#4
Sorry, I built that quest unique for Forgotten Realms. I will not make another one for someone else.
05/15/2011 22:53 Sephiroth93#5
Quote:
Originally Posted by Eurion View Post
The God quest on Forgotten Realms is a unique quest with over 1,800 lines of action codes. Roughly 28.00 USD isn't anywhere near enough for the time it would take to code something up like that. It took me roughly six months of testing and rewriting to get it to where it is now.
God Quest like on TQ servers ? or it`s an immitation?
05/15/2011 22:58 Eurion#6
Neither. It's a quest that makes players must go alone into different maps, and kill bosses, with each level, there's a different boss. Once you hit the final map, you have to take on each of the bosses from the previous maps. If you succeed in kill all the bosses, you are awarded with a god/goddess title, and a special pet that is only available through the quest.
05/15/2011 23:09 lukester#7
Quote:
Originally Posted by Eurion View Post
Neither. It's a quest that makes players must go alone into different maps, and kill bosses, with each level, there's a different boss. Once you hit the final map, you have to take on each of the bosses from the previous maps. If you succeed in kill all the bosses, you are awarded with a god/goddess title, and a special pet that is only available through the quest.
Will you help me? Only ONE map with a very hard boss? and then a reward? thats all i ask for
05/15/2011 23:40 Eurion#8
Quote:
Originally Posted by lukester View Post
Will you help me? Only ONE map with a very hard boss? and then a reward? thats all i ask for

This will get you started. It doesn't include a boss, but I leave that up to you as well as coding the bosses death sequence.

Code:
INSERT INTO `cq_action` VALUES
('45000000', '45000001','45000002','1080','600','isexit'),
('45000001', '0','0','126','0','Sorry you have already done this quest.'),
('45000002', '45000001','0','101','0','Welcome %user_name, I am the quest npc.'),
('45000003', '45000004','0','101','0','I will send you to the map to fight the beast.'),
('45000004', '45000005','0','102','0','Ill~Enter 45000006'),
('45000005', '4000033','0','102','0','No~Thanks 0'),
('45000006', '45000007','0','1003','0','[color=blue]8923 43 43 1[/color]'),
('45000007', '0','0','2006','0','0 0 8923 51 53 [color=red]3031[/color]00 [color=red]3031[/color]');

INSERT INTO `cq_npc` VALUES
('737','0','0','QuestNpc','29', '12040', '0', '0', '-1', '1000', '296', '480', '45000000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '5', '5', 'нч', '0', '0', '0', '0', '1', '0', '3', '3', '3', '3');

INSERT INTO `cq_task VALUES 
('45000000', '45000000', '0', '', '', '0', '0', '999', '-100000', '100000', '999', '0', '0', '-1', '0'),
('45000006', '45000006', '0', '', '', '0', '0', '999', '-100000', '100000', '999', '0', '0', '-1', '0');
What this does is, It creates a npc for the quest. Then it checks if the quest has been started.

The blue is the map id and coords. Currently it sends them to HolyIsland.

The Red is the cq_monstertype.id You can change that with your new boss. Right now it spawns a refined boss.

When you create your boss, Make sure in the death sequence you start the quest with the 1080 type and a data of 600.


It's pretty simple, but it should get you started on the way.
05/16/2011 00:35 lukester#9
Quote:
Originally Posted by Eurion View Post
This will get you started. It doesn't include a boss, but I leave that up to you as well as coding the bosses death sequence.

Code:
INSERT INTO `cq_action` VALUES
('45000000', '45000001','45000002','1080','600','isexit'),
('45000001', '0','0','126','0','Sorry you have already done this quest.'),
('45000002', '45000001','0','101','0','Welcome %user_name, I am the quest npc.'),
('45000003', '45000004','0','101','0','I will send you to the map to fight the beast.'),
('45000004', '45000005','0','102','0','Ill~Enter 45000006'),
('45000005', '4000033','0','102','0','No~Thanks 0'),
('45000006', '45000007','0','1003','0','[COLOR=blue]8923 43 43 1[/COLOR]'),
('45000007', '0','0','2006','0','0 0 8923 51 53 [COLOR=red]3031[/COLOR]00 [COLOR=red]3031[/COLOR]');
 
INSERT INTO `cq_npc` VALUES
('737','0','0','QuestNpc','29', '12040', '0', '0', '-1', '1000', '296', '480', '45000000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '5', '5', 'нч', '0', '0', '0', '0', '1', '0', '3', '3', '3', '3');
 
INSERT INTO `cq_task VALUES 
('45000000', '45000000', '0', '', '', '0', '0', '999', '-100000', '100000', '999', '0', '0', '-1', '0'),
('45000006', '45000006', '0', '', '', '0', '0', '999', '-100000', '100000', '999', '0', '0', '-1', '0');
What this does is, It creates a npc for the quest. Then it checks if the quest has been started.

The blue is the map id and coords. Currently it sends them to HolyIsland.

The Red is the cq_monstertype.id You can change that with your new boss. Right now it spawns a refined boss.

When you create your boss, Make sure in the death sequence you start the quest with the 1080 type and a data of 600.


It's pretty simple, but it should get you started on the way.
Haha i dont know anything about it....
05/16/2011 00:59 Eurion#10
Than sadly, I can't help you any further. I expect people to know atleast something about what they want. I've given you a start, Now its up to you to finish it.
05/16/2011 21:12 ~Sword~Stalker~.#11
u should have said that the coords of the tele should be in cq_npc 1000 230 459 for example

and btw u didnt help much since anyone can do a teleporter going to a Map .... etc.

Regards
05/16/2011 21:17 Eurion#12
Quote:
Originally Posted by ~Sword~Stalker~. View Post
u should have said that the coords of the tele should be in cq_npc 1000 230 459 for example

and btw u didnt help much since anyone can do a teleporter going to a Map .... etc.

Regards
The query I posted wasn't meant to be used. It was a diagram of how to make a simple quest. Common sense says that if you are adding a npc, you must place the coords of that npc inside the npc file.

If you look closely, you will notice, that my queries weren't just a teleporter, It takes the player to a map, and spawns a monster as the player enters the map.

If someone wants to add a quest to their server, they should at least know the basics of how the quest system works.
05/16/2011 21:42 linja12#13
im appreaciate wat you doing. for newby. you need just learn a basic quest. mybe you can be pro quest maker. :)
05/16/2011 21:53 Eurion#14
I know how to make quests. I was giving lukester a diagram of how a simple quest could be written.
05/16/2011 22:09 linja12#15
do you have querry, for quest( when open box/item , monster appear ,when kill drop ep?)
you also can make this npC for me? pls thankz.