Temp Disable Stat Screen

It would be nice if there were a command to temporarily disable the selection of the Stat Screen. For instance, during a stat modifying scene or a stat check/roll and you don’t want the player to be able to check their stats in that specific scene.

If anyone knows of a way to do this please share, otherwise, head honcho developers I hope you read this!

You could do it like this:

Have a variable called something like showstats, which is set true normally, but set false when you don’t want people checking their stats. And then in the choicescript_stats.txt file, you would have:

*if showstats
    *stat_chart
        (Put the stats here)
*if not(showstats)
    Stat Screen temporarily disabled

Myself, I don’t see any problem with people checking their stats at any time. But that’s how I’d do it if I wanted to.

4 Likes

This is more of a work-around, but for some purposes, you could just have a variable called hidestats, and set “hidestats true” when you want them invisible. Then on choicescript_stats.txt you could have the stats only display under *if hidestats false.

Edit: PARROTWATCHER

2 Likes

Edit: Fast repliers!

Just use a variable. :slight_smile:

*set showstats false
action
*set showstats true
more action


and in the stats file:

*if (showstats)
Here it is!
*finish
Sorry, no stats to show right now.
*finish

That’s a good solution, but for the super top secret reason I need it, that won’t work :disappointed_relieved:

Okay I guess I can reveal my super secret plan…

When the player selects an option I want it to then set the variable to a random number, but the issue is that if they go to the stat screen during that page and then go back the command runs again and the variable changes AGAIN. I only want the random generation to run once and the only way to do that is to have all the random generations run before the choice screen, but that becomes a hassle when there are multiple options because each option would then require its own variable.

Randomize the variable before you need it. (If I’m using random variables I generate a batch at the very start of the game.)

As for why there’s pretty much no chance something like this is going to be implemented anytime soon, this is what a game looks like on the iPad:

1 Like

Set random variables above, and then reference them as needed :slight_smile:

Heh, @ParrotWatcher and I have clone moments now and then… welcome to the club, @Lucid

Edit: ninja again? Curse my slow typing :stuck_out_tongue:

2 Likes

Yes I know, the solution is to just have a variable for each option that is set to randomize to the appropriate value during each choice interval, but It’d be nice to not have to manage half a dozen variables that essentially all do the same thing.

But see, the ipad version solves the problem though because its not changing screens and forcing the commands to rerun.

So, if you don’t mind me asking, why do you want the variables randomised?

1 Like

Damage rolls.

(Posts must be at least 20 characters so I put this here.)

Maybe a gosub after each damage roll to set the result for the next one?

Why do you want random damage?

I think Choice of Games tends to discourage randomness in that way.

Hey FairyGodfeather, Watttuppppp?

Trust me I know what I’m doing. Probably.

1 Like

Heh! Just asking. Random damage annoys me. :slight_smile: I suppose it works for a RPG though.

1 Like
  1. As for why it’s a bad idea for combat to be random, beyond that it can be frustrating and boring (remember, the player doesn’t see what’s happening under the hood for the most part), it also adds a lot of work for what value it can add if done well.

True(~ish in that you can still use a stats screen in portrait mode), but still, it’s the reason why there’s no possibility of a ‘disable stats’ button, and why there’d be no easy way to add one.

I’m not sure why you need multiple variables for this? The easiest way is to just back up from where you need the stat and run it on the page before.

[details=That is to say this:]```
previous page
*choice
#option
*rand foo 0 9
*if foo > 5
random
not random


becomes:

*rand foo 0 9
previous page
*choice
#option
*if foo > 5
random
not random


(Even when I way overengineered a random variable system, I used like six variables tops.)

Because the range of the randomized variable changes depending on the choice chosen.
Ex:

#Cast fireball 
  *rand dmg 3 9
  You cast a totally awesome fireball and deal ${dmg} damage!
#Kick
  *rand dmg 1 4
  You kick him in the shin and deal ${dmg} damage!

In that instance I would have had to use two separate dmg variables because they have different ranges.

My hopes are that it’ll add to the realism/chaos of the world. Like, I have 100 hp and you deal 25 dmg, how much do I have left? What is this Preschool Number Theory?

Now if I have harvested 1019 souls and your soulsteal channels for x seconds and manages to consume a random number based off of x seconds. Now that makes a game seem more alive!

Edit: Oh, and don’t worry, the game uses *selectable_if so I don’t allow the player to choose an option that has the potential to kill them without the player knowing. That stuff pisses me off more than other things that piss me off… The player is immersively warned that their action they are choosing is potentially dangerous if they dont have the stats to safely roll it

See. I find hit-points and damage points completely lack realism of any sort.

If I was to get a fireball to the face I’d be screaming in agony and covered in burns, and I would want to go to the hospital to get that fixed. Unless it was just like toasty sunburn, in which case I’d still be standing up.

If I kick someone, well maybe I shatter their kneecap and force them to stop fighting me, or maybe I hurt my own foot! Or maybe I miss. Yeah.

But I’m not taking off damage points, especially not a hundred of them. I’m not going to have to kick someone roughly 40 times until they’re out of hit points.

5 Likes

Hit points have always been an unrealistic gaming abstraction. For a proper RPG, they’re pretty much necessary (unless you want to have ridiculously complicated rules), but for Co/HG I think they get in the way of the story. You’re fighting a giant robot? Don’t just hit it for 999 points of damage; you have to think: attack the weapon, the power source, the legs, or the driver?

4 Likes

Yep! That’s my own thoughts. I prefer fights like in Gun Mute (have you played that, mute Cowboy looking to rescue his boyfriend in a sci-fi wild-west) where there’s no hit points at all, just puzzles.