Random Encounters, how do i do this?

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.
  • use the expression random(number), if you use random(100) it will be a random number between 0 and 99.
    Then use that number for different creatures spawns, attacks, damage etc

  • Let's say you want a random encounter every 5-30 seconds while the player is walking around. You can do something like this pseudocode:

    Code
    Start of application      --> Set RandomEncounterTimer to 5*60 + random(25*60)
    Player is walking         --> Subtract 1 from RandomEncounterTimer
    RandomEncounterTimer <= 0 --> Set RandomEncounterTimer to 5*60 + random(25*60)
                                + Jump to frame "Random encounter"

    Please login to see this link. (Indie games and Fusion resources)
    For freelance inquiries please email admin at ultimatewalrus.com

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!