Rätsel-Sammlung (evtl. mit LUA)

  • #1, by crankschenkFriday, 28. September 2018, 13:03 6 years ago
    Hallo allerseits,

    hat jemand eine Sammlung mit Rätseln oder Spielchen, die man in VS einbauen kann? Ist eigentlich egal, ob es mit LUA gemacht wurde (wovon ich allerding ausgehe) oder auf andere Art und Weise.
    Mich würde interessieren, was mit VS alles Möglich ist und wie man das umsetzt.

    Danke im Voraus
    Manuel

    Newbie

    100 Posts


  • #2, by sebastianFriday, 28. September 2018, 13:49 6 years ago
    Hallo allerseits,

    hat jemand eine Sammlung mit Rätseln oder Spielchen, die man in VS einbauen kann? Ist eigentlich egal, ob es mit LUA gemacht wurde (wovon ich allerding ausgehe) oder auf andere Art und Weise.
    Mich würde interessieren, was mit VS alles Möglich ist und wie man das umsetzt.

    Danke im Voraus
    Manuel
    Ich habe jetzt nicht direkt eine parate Sammlung an fertigen Projekten, kann aber durchaus eine Abschätzung abgeben, was so alles machbar ist :


    Steine werfen:
    Anhand eines sich füllenden Balkens einen bestimmten Punkt treffen + Klicken, damit ein Ziel getriffen wird. Kann man sicherlich auch auf ein Angelspiel abändern.

    Zahlenschloss:
    Ein klassisches Zahlenschloss wo eine Kombination eingegeben werden muss. Abgewandelte Formen der grafischen Darstellung sind dabei immer sehr interessant.

    Schieberätsel:
    verschieben von Platten in eine bestimmte Anordnung. 

    Match 3:


    usw...


    Thread Captain

    2346 Posts

  • #3, by afrlmeFriday, 28. September 2018, 13:53 6 years ago
    I posted a 3x3 sliding puzzle game made with Lua on the wiki under script index page.

    Other puzzles you could do with Lua or potentially with action parts are...

    ring/tile rotation (rotate tiles/rings to align the pieces until the correct image/pattern is shown).

    chess / checkers (potentially)

    pipe puzzle (essentially create a path from a starting point to an end point).

    match 3 - or any other kind of match game you can think of

    connection - I've forgotten the name for this, but it's where you draw a line between 1 thing to another thing & connect them together, like this...

    https://i.ytimg.com/vi/I89mU7U-4P0/maxresdefault.jpg

    crossword/wordsearch

    hidden object

    physics/collision based mini games (possible)

    text input (password)

    qte (quick time event) - maybe have to spam mouse button or click certain spots on the scene within x time limit

    combination lock (keycode) - tumbler lock or digital keypad.

    There are so many different puzzles you can do with or without Lua script. I'm sure I've probably forgotten a bunch of stuff too.

    Speaking of puzzles, it might be a good idea to create a wiki page about all the different types of puzzles someone could potentially include in a point & click adventure game as there are many more than what I listed.

    Imperator

    7278 Posts

  • #4, by crankschenkFriday, 28. September 2018, 14:15 6 years ago
    These are very good ideas.
    Thank you, guys.

    Newbie

    100 Posts