Ideas/Requests for Video Tutorials?
- Campbell
- Site Admin
- Posts: 4734
- Joined: Sun Jun 23, 2002 12:05 pm
- Points: 0
- Location: Edinburgh, Scotland
- Contact:
Re: Ideas/Requests for Video Tutorials?
I just wanted to say, I think these are brilliant - thanks for creating them. I also look forward to seeing any more you (or anyone else) creates.
The main website has a videos page (http://www.adrift.co/videos) which is a bit sparse at the moment. I'd be happy to host these there if you like, or we can just set up a section of this forum?
The main website has a videos page (http://www.adrift.co/videos) which is a bit sparse at the moment. I'd be happy to host these there if you like, or we can just set up a section of this forum?
ADRIFT Developer developer.
Re: Ideas/Requests for Video Tutorials?
How would we go about organizing the video page or a forum section? I like the forum section idea, but the video page would also be good. Maybe the video page is for videos that will draw people in to using Adrift, while a forum video section would be open to anyone contributing?
- Campbell
- Site Admin
- Posts: 4734
- Joined: Sun Jun 23, 2002 12:05 pm
- Points: 0
- Location: Edinburgh, Scotland
- Contact:
Re: Ideas/Requests for Video Tutorials?
Well we could just create a Videos subforum, and you can post a video as the new topic. Then the discussion can go after each video?
ADRIFT Developer developer.
Re: Ideas/Requests for Video Tutorials?
That sounds good to me. At some point we could also decide which ones might also belong on the Video Page.
- Infected Behaviour
- Posts: 34
- Joined: Mon Feb 29, 2016 11:23 pm
- Points: 10
Re: Ideas/Requests for Video Tutorials?
How about tutorial videos that teach the new people step by step on how to make simple games and gradually getting more advanced. This way anyone that's new like myself, Can learn exactly what this or that option can do.
Basically maybe having three beginner game tutorials, three moderate game tutorials and eventually having expert game tutorials. This would greatly be appreciated.
Basically maybe having three beginner game tutorials, three moderate game tutorials and eventually having expert game tutorials. This would greatly be appreciated.
Re: Ideas/Requests for Video Tutorials?
I've made a few with that kind of leveling in mind. The first post has a few links, I've not put all of them up in the new video tutorial sub forum yet.
- Infected Behaviour
- Posts: 34
- Joined: Mon Feb 29, 2016 11:23 pm
- Points: 10
Re: Ideas/Requests for Video Tutorials?
Thanks man. I do find Adrift 5 easy to understand. Although as soon as I think I know what I'm doing, Whatever I've done just doesn't work. I go back to the tutorial and check what I might have missed but either the answer isn't clear enough or that part of the tutorial hasn't been done yet.
I'm having trouble with character conversations. Also trying to move my character from one room to another but without linking a room. Since I'd like the player to type "start" for the game to start, so the function would need to "move character to location". I've seen the options in Adrift and set them up but again, whatever I try fails. Later I also need to have "move object to location". Since the game I'm trying to make has a lot of IFs.
I'd really appreciate some help with this. Since I'd like to also help by making some tutorials for others, Once I understand what's going on. Though I don't mean video tutorials. Like to help Campbell add more to the tutorial. Since I really like Adrift.
I'm having trouble with character conversations. Also trying to move my character from one room to another but without linking a room. Since I'd like the player to type "start" for the game to start, so the function would need to "move character to location". I've seen the options in Adrift and set them up but again, whatever I try fails. Later I also need to have "move object to location". Since the game I'm trying to make has a lot of IFs.
I'd really appreciate some help with this. Since I'd like to also help by making some tutorials for others, Once I understand what's going on. Though I don't mean video tutorials. Like to help Campbell add more to the tutorial. Since I really like Adrift.
Re: Ideas/Requests for Video Tutorials?
Which tutorials are you referring to? If it is one of my video tutorials I can focus on doing the next part. I'll try and help you in a different thread for the other things you mentioned so we can keep this topic on the topic of video tutorials.Infected Behaviour wrote:Thanks man. I do find Adrift 5 easy to understand. Although as soon as I think I know what I'm doing, Whatever I've done just doesn't work. I go back to the tutorial and check what I might have missed but either the answer isn't clear enough or that part of the tutorial hasn't been done yet.

-
- Posts: 127
- Joined: Sat Dec 03, 2011 10:56 pm
- Points: 13
Re: Ideas/Requests for Video Tutorials?
Elliot, could you please do a Battle System tutorial? Please?
My gamedev blog: https://gamedev-ad.blogspot.com
- Lazzah
- Moderator
- Posts: 2454
- Joined: Thu Mar 31, 2011 5:54 am
- Points: 90
- Location: Clacton-on-Sea, Essex
Re: Ideas/Requests for Video Tutorials?
All you need is the action MOVE CHARACTER "charactername" TO LOCATION "location name". Simple as that.Infected Behaviour wrote:Also trying to move my character from one room to another but without linking a room.
Why do you need to move the character in this way at the start of the game? Why not just set the "Location of the character" in the character's properties to the location you want the character in?Infected Behaviour wrote:Since I'd like the player to type "start" for the game to start, so the function would need to "move character to location".
The Axe of Kolt, The Spectre of Castle Coris, The Fortress of Fear, Die Feuerfaust, The Lost Children, Run, Bronwynn, Run, The Call of the Shaman, The Lost Labyrinth of Lazaitch, Magnetic Moon, Starship Quest, Revenge of the Space Pirates
Re: Ideas/Requests for Video Tutorials?
Battle systems range widely in complexity, what did you have in mind? At its most basic you have attack and health numbers with some form of randomness. Once you add equipment, skills, and other features a battle system quickly becomes fairly complicated. To make your own you would want a good understanding of math. Adrift features of interest to you would include expressions, such as Rand(0,X) to simulate randomness/dice, variables and properties to track integer values for attack and health, and general task restrictions in order to figure out which rules of your battle system should apply and when in order to make things like skills, items, and environment conditions relevant when attacking or spell casting. You'd also want to consider the problems of text variety when reporting the outcomes of fights. MUDs don't worry about that but that is because they are real time and players need to know what is happening in order to make quick decisions. Turn-based fiction like Adrift doesn't have this constraint, so Alternate descriptions could help to make the results more interesting to read.RenatoDias wrote:Elliot, could you please do a Battle System tutorial? Please?
-
- Posts: 127
- Joined: Sat Dec 03, 2011 10:56 pm
- Points: 13
Re: Ideas/Requests for Video Tutorials?
It's a more simple one, such as Offense vs Defense, Accuracy vs Evasion and such. Not much randomness, at least for the beginning. It's because I'm planning a kind of boss battle on my game, that's why I asked for a Battle System.ElliotM wrote:Battle systems range widely in complexity, what did you have in mind? At its most basic you have attack and health numbers with some form of randomness. Once you add equipment, skills, and other features a battle system quickly becomes fairly complicated. To make your own you would want a good understanding of math. Adrift features of interest to you would include expressions, such as Rand(0,X) to simulate randomness/dice, variables and properties to track integer values for attack and health, and general task restrictions in order to figure out which rules of your battle system should apply and when in order to make things like skills, items, and environment conditions relevant when attacking or spell casting. You'd also want to consider the problems of text variety when reporting the outcomes of fights. MUDs don't worry about that but that is because they are real time and players need to know what is happening in order to make quick decisions. Turn-based fiction like Adrift doesn't have this constraint, so Alternate descriptions could help to make the results more interesting to read.RenatoDias wrote:Elliot, could you please do a Battle System tutorial? Please?
Anyway, thanks for replying. It would be a great help if you could do one.
My gamedev blog: https://gamedev-ad.blogspot.com
Re: Ideas/Requests for Video Tutorials?
I'd be interested in making a demo for you but I would want you to share your design that you have in mind. Make a new thread in this forum and share as much of the following as you can to describe the battle system you are interested in and I'll see if that is something I can help you with:
- A flow chart showing what you want to happen in your battle system when X, Y, or Z happen,
- a list of X, Y, and Z actions you can take that affect combat,
- a list of stats or skills if any that affect combat,
- a list of actions you are prevented from doing when you are in combat,
- another list of sample objects with stats you can use to affect battles,
- and a fake transcript showing what text you would want to see the battle system produce.
- If you have any inspiration sources or models you are drawing from, I'd like you to mention those as well.
-
- Posts: 1
- Joined: Fri Sep 07, 2018 1:32 pm
Re: Ideas/Requests for Video Tutorials?
Thanks for the videos guys really big help.
-
- Posts: 127
- Joined: Sat Dec 03, 2011 10:56 pm
- Points: 13
Re: Ideas/Requests for Video Tutorials?
Is there anything about NPC to NPC interactions like this viewtopic.php?f=6&t=5500 ?
My gamedev blog: https://gamedev-ad.blogspot.com