KeeghanM's Forum Posts

  • Been a bit quiet on the updates for the last few days.

    Haven't had anything pretty or fancy or interesting to post. But I have been working! Been fixing up a LOAD of bugs, mostly around the item and inventory system. This was needed so I could move forward and start implementing the event system for unique scenarios based on character/item combos!

    Anywho, heres my bug fix list!

    Bugs:

      ? Not detecting mouse-overs of inventory icons correctly - FIXED ? When moving items around the inventory, item descriptions would pop up as you moused over - FIXED ? You can interact with objects/npc's/items in the world while dialogue is ongoing, cancelling the dialogue - FIXED ? Can "Use" and empty inventory slot - FIXED ? Small "pop-in effect" in the item description display when you mouse over in the inventory - FIXED ? After dropping an item from your inventory, the slot shows empty but still has the item data. This leads to item duplication. - FIXED ? Picking up an item previously dropped doesn't add it back to the inventory, but does remove it from the world - FIXED ? Dropped icons sometimes have the wrong icon. - FIXED ? You can move the character while in the inventory screen - FIXED

    Additions:

      ? Right clicking items in the inventory will give different options based on type, Eat for food, Cast for spell etc ? While in the inventory screen, darken the background so it looks cleaner
  • wow mOOnpunk having the seperate object (in your case shadows) handling the Z-Order is brilliant! Allows much more freedom of animation in the characters!

  • Ever have those moments when you impress yourself?

    Just finished up implementing the dialogue system, using a JSON text file. And i got it FIRST TRY!

    Seriously. I wrote all the code, created the JSON file format, and built UI to support it without running the game once. On my first test, it all worked 100%. So, so, so, happy!

    .

    .

    .

    You want proof dont you? Well sadly I can't really prove it to you, but I can show you it working!

    I might add in a little character's face above the name at some point, but thats just an easy small artistic detail. Wouldn't take long to do at all!

  • Loving your work and generosity Eric! Always my goto when I need to add a quick song to a test project!

  • Props for doing an RPG. I have a soft spot for ISO stuff too, so gonna look forward to how this turns out.

    Thanks huZba! It certainly is a large undertaking, but I think making manageable sized goals and steady progress will bring it to completion!

  • Just a smaller update today, Been working on some more item/inventory features. Now you can (slightly buggily) pick up and drop items around the world.

    Few small bugs to iron out, but shouldn't take long.

  • Store each levels spawn rates for each enemy in a 2D array? With X being level and Y being monster type and spawn value

    So if you think of Y0 = Zombie, Y1 = Vampire, Y2 = goblin, Y3 = troll.

    The actual array just keeps numbers, but they need to be INVERSE percentages.

    So if you have:

      0 % spawn rate, store 100 80 %, store 20 10%, store 90

    This is because we will do a GREATER THAN check.

    Then you generate a random number between 0-100.

    You know what level you're at so you just loop for Array.Height, checking Random > Array.Value

    If true, spawn a mob that corresponds to that level of the array.

    If you always want to spawn something, you'll need a default spawn at the end of your array that has 0.

    This was top of my head, and completely un tested but in theory could work... right?

    You can then also dynamically change the spawn rate as you go, just update the array.

  • R0J0hound .. Thank you! Always good to get such intelligent input!

    Will definitely have to play around with some of those ideas next time I need a break from my main project

  • Awesome! Congrats!

    Cheers!

    Brilliant! Would love to see a polished and performant version of this

    You think your technique allows for textures and npcs?

    Sadly this technique doesn't allow for detailed textures. However because each wall block is actually a bunch of repeated sprites, you could deisgn the texture to be horizontally seamless, but you would get limited detailed in that plane. Lines going horizontally along the wall is definitely doable though.

    I'm sure you could get NPC's, but they would have to be rendered with a different pass, essentially use the same technique but a second time.

  • I know theres already a few of these around, but one costs money and the other has dead links.

    So i figured it'd be a nice simple introduction for me to the JavaScript SDK. (read: first plugin, be nice )

    Basically, this is an expression only plugin that will take a single input ( the "Seed") and generate a Psuedo Random Number based on that seed.

    You can then use that PRN just like you'd use the built in Random expression. But this time it'll always be the same, no matter how many times you generate it!

    See it in action here

    I've tested it a bit, but I'd love to have the community have a play before I move it to completed. Also, any features you'd like added, comment below!

    ---

    ALL DOWNLOADS INCLUDE EXAMPLE CAPX SHOWING USAGE.

    ---

    V.1.0.0 - 14/09/17 - DOWNLOAD

      Initial release Two Expressions: - Int: returns a whole number between 0 and 2147483647 based on the seed - Float: returns a float between 0 and 1 based on the seed.

    NOTE: Not 100% Random in its spread, tends towards 1 & 0. Hence the Pseudo Random name. If you want a 100% Random, proper Entropy, correct spread... ask and I might implement it. It wont be as fast though.

  • Because Ashley, that would be super smart and a simple way to fix my problem.

    And I'm not super smart, and always go for the complex methods!

    But that is a good idea, I'll look into maybe using that in the future. Particularly if I run into performance issues with this.

  • Use something other than the lerp function. The lerp has an "Ease In - Ease Out" effect. I just used it as it was simple to implement.

  • As a reeeaaally quick example, heres a CAPX.

    I'm loading a bunch of positions to an array, including angle, then lerping to them and once there I increment a global variable and update the position.

    You could also add in invisible marker sprites with ID's instead of having them in an array.

    You could dynamically define the points in the array.

    You could just use regular animation.

    Any of the above would work <img src="{SMILIES_PATH}/icon_e_wink.gif" alt=";)" title="Wink">

    Anyway, heres the capx https://drive.google.com/open?id=0B5cW0 ... HNiY1drLUk

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Personally, I wouldn't use image points.

    Well, to be honest I'd just use an animation...

    But if you're set on one frame then you could have an event that runs in order and moves the object to a specific x and y and also sets its angle.

    If you don't mind jumping around like in your GIF you could have a wait inbetween. Or you could setup a bunch of Every Tick events, using lerping to smoothly move. And then trigger the next one when you reach somewhere.

  • luckyrawatlucky you'd need to have some kind of picking method. Without seeing a capx, or knowing more about what you're trying to achieve it's a little hard to give specific help.