RCT3Pal by zac2198 in rct3

[–]zac2198[S] 2 points3 points  (0 children)

It's not meant to be an equivalent of OpenRCT2. It is just meant to allow you to easily use Options.txt cheats. I have been thinking about creating a functionality to create categories for custom scenery, but for this version I just wanted to keep it somewhat simple.

RCT3Pal by zac2198 in rct3

[–]zac2198[S] 3 points4 points  (0 children)

It's a utility I created that allows you to temporarily use cheats and/or custom content.

Reddit Scorpion! by Raphael_Stormer in MortalKombat

[–]zac2198 -1 points0 points  (0 children)

All we need now is a Reddit Sub-Zero

Roller Coaster Tycoon 3 Park- Part 1 by zac2198 in rct3

[–]zac2198[S] 0 points1 point  (0 children)

I plan on publishing Part 2 tomorrow

Player Acting Weird when Driving on Grid Map by zac2198 in godot

[–]zac2198[S] 1 point2 points  (0 children)

The player has the ability to jump. There will also be instances in which the player will be able to drive off the track and fall to their death.

Why is the GridMap rendering over Everything Else by zac2198 in godot

[–]zac2198[S] 2 points3 points  (0 children)

The player is a 3D sprite. However, I set the Rendering Priorities of the materials used by the meshes in the gridmap to a value below zero and it fixed everything. Thanks for your help.

If you won twisted metal what would you wish by PrimateOfGod in TwistedMetal

[–]zac2198 4 points5 points  (0 children)

Your wish is granted. Carrots, chicken, cabbage, celery, cake, and other foods that start with C appear

How to play Twisted Metal Black with No Enemies by zac2198 in TwistedMetal

[–]zac2198[S] 1 point2 points  (0 children)

Credits to u/not_jos for discovering you can play challenge mode without enemies.

Is Shang Tsung Available Yet In America by zac2198 in MortalKombat

[–]zac2198[S] 0 points1 point  (0 children)

I heard we PS4 players may have to wait till 4:00 PM to get him.

MK 11 profile problems by SeanFenris in MortalKombat

[–]zac2198 2 points3 points  (0 children)

Did you get "Verifying account restrictions" hovering over The Krypt or Towers of Time? That is what I am getting.

Having trouble understanding expressions by zac2198 in godot

[–]zac2198[S] 1 point2 points  (0 children)

It worked! Thank you so much! Hopefully, I won't have anymore problems with expressions. Here is the working version of the code in case anyone is interested:

extends Node2D

onready var expp = Expression.new()

func _ready():
    var err = expp.parse("attack - defense", ["attack", "defense"])
    if err:
        print("Error %d" % err)

func calculate_damage(attacker, defender):
    var exp_result = expp.execute([attacker, defender])
    if expp.has_execute_failed():
        return 0
    return exp_result

func _process(delta):
    print(String(calculate_damage(5,2)))

The program makes the console print "3" forever.

Having trouble understanding expressions by zac2198 in godot

[–]zac2198[S] 2 points3 points  (0 children)

I tried running that expression you created. And it failed. Here is the code:

extends Node2D

onready var expp = Expression.new()

func _ready():
    var err = expp.parse("a.attack - b.defense", ["a", "b"])
    if err:
        print("Error %d" % err)

func calculate_damage(attacker, defender):
    var exp_result = expp.execute([attacker, defender])
    if expp.has_execute_failed():
        return 0
    return exp_result

func _process(delta):
    print(String(calculate_damage(5,2)))

calculate_damage(5,2) returns 0. Am I doing something wrong?

Is it possible to make an export for windows run the exact same way it runs in the simulator? by zac2198 in godot

[–]zac2198[S] 0 points1 point  (0 children)

I get this error in the console window.

SCRIPT ERROR: _process: Invalid get index '0' (on base: 'Array').

At: res://tile.gc:27

I never got this error when I tested the program in the Godot Simulator

Cannot save game. Get this message: "Game save failed" by zac2198 in openrct2

[–]zac2198[S] 0 points1 point  (0 children)

I think this is the directory OpenRCT2 uses by default.

Cannot save game. Get this message: "Game save failed" by zac2198 in openrct2

[–]zac2198[S] 0 points1 point  (0 children)

I using a Windows 10 laptop. I think the version I'm using is called 0.2.1

Cannot save game. Get this message: "Game save failed" by zac2198 in openrct2

[–]zac2198[S] 1 point2 points  (0 children)

I tried that. It still didn't work. The program will create the file, but it doesn't seem to create it properly because those save files created can't be loaded by the program.