any quest mods?

ph8jPf9M
Member
 
Posts: 70
Joined: Sat Jul 16, 2016 10:29
GitHub: 22i

any quest mods?

by ph8jPf9M » Thu Sep 01, 2016 13:37

i would like to start creating quests. what mods, api and frameworks should i use?
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

Re: any quest mods?

by rubenwardy » Thu Sep 01, 2016 13:40

See quests in rpgtes
It's WTFPL
 

User avatar
cd2
Member
 
Posts: 552
Joined: Mon Jun 01, 2015 06:30
GitHub: cdqwertz
IRC: freenode - cd2 InchraNet - cd
In-game: cd cd2

Re: any quest mods?

by cd2 » Sun Jan 01, 2017 09:42

rubenwardy wrote:See quests in rpgtes
It's WTFPL

I'm pretty sure that it isn't licensed under WTFPL. https://github.com/cdqwertz/rpgtest/tree/master/mods/quests (LGPL 2.1)
 

User avatar
TheReaperKing
Member
 
Posts: 493
Joined: Sun Nov 22, 2015 21:36

Re: any quest mods?

by TheReaperKing » Mon Jan 02, 2017 00:03

Looking at your quests mod, is there any way to give rewards?

Edit - I see the goal.reward in the code, would you just add a line in this syntax?
local quest = quests.new(name, "Preparing a small feast")
quests.add_dig_goal(quest, "Harvest wheat", "farming:wheat_8", 5)
quests.add_dig_goal(quest, "Harvest apples", "default:apple", 3)
quests.add_quest(name, quest)
goal.reward("food:pie")
goal.ending("For your efforts you have been awarded a pie! Thank you!")
Project Lead of the Doom 3 Mod Last Man Standing - http://Doom3Coop.com

Project Lead of Platinum Arts Sandbox Free 3D Game Maker - http://SandboxGameMaker.com

Youtube Channel - https://www.youtube.com/user/PlatinumArtsKids
 

User avatar
cd2
Member
 
Posts: 552
Joined: Mon Jun 01, 2015 06:30
GitHub: cdqwertz
IRC: freenode - cd2 InchraNet - cd
In-game: cd cd2

Re: any quest mods?

by cd2 » Mon Jan 02, 2017 09:47

TheReaperKing wrote:Looking at your quests mod, is there any way to give rewards?

Edit - I see the goal.reward in the code, would you just add a line in this syntax?
local quest = quests.new(name, "Preparing a small feast")
quests.add_dig_goal(quest, "Harvest wheat", "farming:wheat_8", 5)
quests.add_dig_goal(quest, "Harvest apples", "default:apple", 3)
quests.add_quest(name, quest)
goal.reward("food:pie")
goal.ending("For your efforts you have been awarded a pie! Thank you!")


This should work:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
local quest = quests.new(name, "Preparing a small feast")
local goal_1 = quests.add_dig_goal(quest, "Harvest wheat", "farming:wheat_8", 5)
local goal_2 = quests.add_dig_goal(quest, "Harvest apples", "default:apple", 3)

goal_2.requires = goal_1 -- the player needs to complete goal 1 before goal 2

goal_2.reward = "food:pie"  -- set reward
goal_2.ending = "For your efforts you have been awarded a pie!  Thank you!"  -- set ending

quests.add_quest(name, quest)
 

User avatar
TheReaperKing
Member
 
Posts: 493
Joined: Sun Nov 22, 2015 21:36

Re: any quest mods?

by TheReaperKing » Mon Jan 02, 2017 10:44

Great stuff, thanks so much!
Project Lead of the Doom 3 Mod Last Man Standing - http://Doom3Coop.com

Project Lead of Platinum Arts Sandbox Free 3D Game Maker - http://SandboxGameMaker.com

Youtube Channel - https://www.youtube.com/user/PlatinumArtsKids
 

843jdc
Member
 
Posts: 207
Joined: Tue Jan 19, 2016 16:46
GitHub: jdc843
IRC: jdc843
In-game: 843jdc

Re: any quest mods?

by 843jdc » Tue Feb 07, 2017 13:33

After playing World of Warcraft for a month or so, I am going to have to look into this mod and see how I can bring quests into Cash's World. Maybe I can give my players a reason to learn how to make things rather than asking/demanding them from the admin so often.

Item quests. Kill mob quests. etc
 

User avatar
domtron vox
Member
 
Posts: 106
Joined: Thu Feb 20, 2014 21:07
GitHub: DomtronVox
IRC: Domtron
In-game: Domtron

Re: any quest mods?

by domtron vox » Mon Feb 27, 2017 13:32

There is a Quests framework by TeTpaAka. Form topic: viewtopic.php?f=11&t=11265
 

bell07
Member
 
Posts: 140
Joined: Sun Sep 04, 2016 15:15
GitHub: bell07

Re: any quest mods?

by bell07 » Mon Feb 27, 2017 20:08

Seen on github sapier does work currently on a new quest_engine in mobf_2_6_dev branch:
https://github.com/sapier/mobf_core/tree/mobf_2_6_dev. It should be really nice if finished, with quests from a Tutor-NPC in animals_modpack.
 


Return to Modding Discussion

Who is online

Users browsing this forum: No registered users and 4 guests

cron