josk Posted February 10, 2015 Share Posted February 10, 2015 A small video showing the first intergration of the FlowGUI inventoy. Lockdown (Escape Plan) is a sci-fi game in the old dungeon crawl style. Similier to and influenced by the modern game Legend of Grimrock. I will post more of the storyline at a later date but for now you are trapped on a research station which is attached to an asteroid. Lots of work to do to finish just the first level but hoping to have a demo out in the coming weeks. Had been waiting for the new update of FlowGUI so I could get an inventoy into the game. Great work Aggror. 8 Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
Guppy Posted February 10, 2015 Share Posted February 10, 2015 The title "Lockdown (Escape Plan)" has a few problems Love the Eye of the beholder style movement tho Quote System: Linux Mint 17 ( = Ubuntu 14.04 with cinnamon desktop ) Ubuntu 14.04, AMD HD 6850, i5 2500k Link to comment Share on other sites More sharing options...
YouGroove Posted February 10, 2015 Share Posted February 10, 2015 Nice Work Josk, looking great. Seems more StarCrawler than Grimrock , why not fast and smooth movement when moving , i don't like the PowerPoint effect Quote Stop toying and make games Link to comment Share on other sites More sharing options...
Guppy Posted February 10, 2015 Share Posted February 10, 2015 Nice Work Josk, looking great. Seems more StarCrawler than Grimrock , why not fast and smooth movement when moving , i don't like the PowerPoint effect Aww come on! the slideshow thing is part of the nostalgia; Quote System: Linux Mint 17 ( = Ubuntu 14.04 with cinnamon desktop ) Ubuntu 14.04, AMD HD 6850, i5 2500k Link to comment Share on other sites More sharing options...
josk Posted February 10, 2015 Author Share Posted February 10, 2015 Working title at the moment, first thought was Escape Route Alpha, mentioned LockDown and it got good response. Open to ideas. Movement is smoother than the video shows, turning could be smoother though. Do want to keep the old style movement. StarCrawler looks interesting. Thanks for the feedback. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
lxFirebal69xl Posted February 18, 2015 Share Posted February 18, 2015 How did you make it so that specific items you pick up allow you to do other things? Like you pick up the flashlight and then you're able to use it, just like that fire hydrant to put out the fire and open the door. Quote Link to comment Share on other sites More sharing options...
josk Posted February 18, 2015 Author Share Posted February 18, 2015 I had a variable that just got called when you collected the flash light that enabled it. There is a player use function in the inventory script or similier which i'm going to go through instead when I get time. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
lxFirebal69xl Posted February 18, 2015 Share Posted February 18, 2015 I had a variable that just got called when you collected the flash light that enabled it. There is a player use function in the inventory script or similier which i'm going to go through instead when I get time. I was messing around with that function earlier and I can't get it to work properly. It's as simple as using a key to open a door. But I can't make it work.... Quote Link to comment Share on other sites More sharing options...
shadmar Posted February 19, 2015 Share Posted February 19, 2015 Cool consept! Quote HP Omen - 16GB - i7 - Nvidia GTX 1060 6GB Link to comment Share on other sites More sharing options...
josk Posted February 19, 2015 Author Share Posted February 19, 2015 Thanks. Done a bit more work, movement smoother. more texture and lighting done. Working on a GUi for a bit. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
josk Posted February 19, 2015 Author Share Posted February 19, 2015 I was messing around with that function earlier and I can't get it to work properly. It's as simple as using a key to open a door. But I can't make it work... I'm assuming you are able to pick up items and have storableobject.lua attach to them. In the inventorytGUI script around line 235 function Script:SetItemSlotProperties() remove the -- on the following bits of curitem code (removed in the code snippet.) --retrieve the item in the itemslot curItem = guiElement:GetItem() --The item in the itemslot can have a UseInventoryItem() function. curItem:UseInventoryItem() In the storable object script goto item.UseInventoryItem = (about line 40). In that function put your code. In my case I put player:torchactive() In my player code I have a torchactive function that makes the torch usable. Hope you understand this, I'm no teacher. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
AnthonyPython Posted February 19, 2015 Share Posted February 19, 2015 I do like the Inventory (way better than the original Inventory) of course that was more of teaching of how it is done, not to be as great like FlowGUI is . Quote OS: Windows 10 Pro CPU: i3-10100 CPU @ 3.60GHz GPU: NVIDIA 2060 Super - 8 GB RAM: 32 GB Link to comment Share on other sites More sharing options...
lxFirebal69xl Posted February 19, 2015 Share Posted February 19, 2015 I'm assuming you are able to pick up items and have storableobject.lua attach to them. In the inventorytGUI script around line 235 function Script:SetItemSlotProperties() remove the -- on the following bits of curitem code (removed in the code snippet.) --retrieve the item in the itemslot curItem = guiElement:GetItem() --The item in the itemslot can have a UseInventoryItem() function. curItem:UseInventoryItem() In the storable object script goto item.UseInventoryItem = (about line 40). In that function put your code. In my case I put player:torchactive() In my player code I have a torchactive function that makes the torch usable. Hope you understand this, I'm no teacher. I did everything you did, deleted the "--" and now I got kind of stuck in the adding a function part. I have no clue how to do that xD I'm still kind of newbish to LUA as you can tell... Quote Link to comment Share on other sites More sharing options...
josk Posted February 19, 2015 Author Share Posted February 19, 2015 To add a function to your player code all you need is something like this function Script:torchactive() self.Target2.script.active =1 end If you look at your player script you will see functions like start and updateworld. It's just the same, you just need to call the function to run it as in the example player:torchactive() In the function place the code you need to run when the condition is met. If you ask in the programming/general discussuin forum even if its something small you will get plenty of answers. Also Rick runs lessons at a cheap price, might be woth looking into. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
josk Posted February 25, 2015 Author Share Posted February 25, 2015 Inspired by all the great vidos and screenshots I have revised my list of things to do before a demo can be released. Most if not all are needed. Depending on feedback that will leave just adding better lighting, textures, models and sounds where needed. Gui/inventory Any instructions and storyline need adding. Events for equipment need changing. At the moment you click the inventory and then you have to press F to activate flash light. Should only work via the inventory panel. Fire extinguisher Needs smoke effect applying when used and limited use only through the inventory needs applying. Store Room door Keycard needed to access. 0% done. Props Some basic medical supplies/food/equipment/weapons. Also room and corridor props and furniture. Sounds Generator, Flickering lights and footsteps. Lift The end of the level needs doing. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
YouGroove Posted February 25, 2015 Share Posted February 25, 2015 Do you have basic gameplay working ? I mean exploring , mobs AI and combat , loot , equipment ? Quote Stop toying and make games Link to comment Share on other sites More sharing options...
lxFirebal69xl Posted February 25, 2015 Share Posted February 25, 2015 Inspired by all the great vidos and screenshots I have revised my list of things to do before a demo can be released. Most if not all are needed. Depending on feedback that will leave just adding better lighting, textures, models and sounds where needed. Gui/inventory Any instructions and storyline need adding. Events for equipment need changing. At the moment you click the inventory and then you have to press F to activate flash light. Should only work via the inventory panel. Fire extinguisher Needs smoke effect applying when used and limited use only through the inventory needs applying. Store Room door Keycard needed to access. 0% done. Props Some basic medical supplies/food/equipment/weapons. Also room and corridor props and furniture. Sounds Generator, Flickering lights and footsteps. Lift The end of the level needs doing. Sounds like you have everything planned, can't wait to see the results! 1 Quote Link to comment Share on other sites More sharing options...
josk Posted February 25, 2015 Author Share Posted February 25, 2015 Do you have basic gameplay working ? I mean exploring , mobs AI and combat , loot , equipment ? Exploring, loot and equipment. all the basics are working. Aliens, Ai and Combat. Have only done a little bit with this, the game play is different to a normal fps so its not done the standard way. Take a look at Grimrock. The first level is about learning what has happend and the basics of movement and interaction. You also come across one of the puzzles that you will find throughout the levels. The puzzle itself looks basic and will require more work to look better though it works. The first level is short, a taster to see what people think. The next level will be a lot bigger. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
josk Posted February 26, 2015 Author Share Posted February 26, 2015 Got started on a journal, basic at the moment but a start. Pressing J brings it up and also hides it. Might not use the name journal. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
lxFirebal69xl Posted February 26, 2015 Share Posted February 26, 2015 Got started on a journal, basic at the moment but a start. Pressing J brings it up and also hides it. Might not use the name journal. Journal is a good name, but you could call it a "Quest Log" or a "Memento Book" they both work for the type of game that you're making. Unless it's sci-fi then you can call it PDA or HSD(Holographic Screen Display) fancy name right? 1 Quote Link to comment Share on other sites More sharing options...
YouGroove Posted February 26, 2015 Share Posted February 26, 2015 I should some day try to make same game style. Level design is simplified and really faster to create. Do you have some playable demo ? Quote Stop toying and make games Link to comment Share on other sites More sharing options...
josk Posted February 26, 2015 Author Share Posted February 26, 2015 Do you have some playable demo ? Soon, though it wont have final look. I want the player to be able to get to the end of the first level, only a short level but shouldn't take to long. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
YouGroove Posted February 26, 2015 Share Posted February 26, 2015 i'm more interested in gameplay tahn final graphics Quote Stop toying and make games Link to comment Share on other sites More sharing options...
josk Posted March 17, 2015 Author Share Posted March 17, 2015 One more thing ticked off the list, the sound for the generators now work as they should. They get louder as you reapir them and the sound range is working. Mono not stereo for that. Still need a better sound effect for the Generators but for now its fine. Slowly getting there. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
josk Posted April 9, 2015 Author Share Posted April 9, 2015 Still working on it, Try for a demo soon, will then move onto Level 2 but with a bit of a rewrite. More info in my latest blog. Quote Elite Cobra Squad Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.