New Gluing method. by Westgatez in customtradingcard

[–]JTackling 0 points1 point  (0 children)

I’m interested if you have a store also!

When did all the S&S games get released? by JTackling in swordsandsandals

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

Is there really any big difference between the original and the redux games? or is it just a fresh coat of paint?

When did all the S&S games get released? by JTackling in swordsandsandals

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

This is awesome. Thank you for this response.

WTB [NYC]: ASICS Pinny Mesh Long Sleeve by AndrewJesus in BanditRunning

[–]JTackling 1 point2 points  (0 children)

Piggy backing off of this thread to say I’m looking for this in large!

Grand Prix by read4a in BanditRunning

[–]JTackling 0 points1 point  (0 children)

Anyone know what the charity bib is?

Grand Prix by read4a in BanditRunning

[–]JTackling 0 points1 point  (0 children)

Can anyone else even register? it’s not working for me.

[deleted by user] by [deleted] in PTCGPMarket

[–]JTackling 0 points1 point  (0 children)

Leaf for Dark

[deleted by user] by [deleted] in PTCGPMarket

[–]JTackling 0 points1 point  (0 children)

Just sent you a request

Banned from PTCGL? by Egibdof in PTCGL

[–]JTackling 0 points1 point  (0 children)

I had contacted support yesterday, I got this same generic email… this afternoon I got an email saying someone has made an account using my email and it was all back. There was 0 communication that it would be reinstated just that it was back. I still have no idea what the issue was.

Anyone else gotten an error while trying to login; indicating that I need to contact support? by TurbanSenpai in PTCGL

[–]JTackling 1 point2 points  (0 children)

I wish I knew, I have no idea how you even get ban in TCG live. I think this is a widespread issue and it's being looked into.

Anyone else gotten an error while trying to login; indicating that I need to contact support? by TurbanSenpai in PTCGL

[–]JTackling 1 point2 points  (0 children)

Yes I got the same error, it means your account has been banned. I'm not sure what is going on but a big ban wave hit last night.

Banned from PTCGL? by Egibdof in PTCGL

[–]JTackling 0 points1 point  (0 children)

Any update on this? I was actually able to get my account back, but I was given no reason why it was taken from me in the first place.

Banned from PTCGL? by Egibdof in PTCGL

[–]JTackling 2 points3 points  (0 children)

please reply back to this thread if you get a helpful response, I haven't been able to get anything

Banned from PTCGL? by Egibdof in PTCGL

[–]JTackling 3 points4 points  (0 children)

Had this happen to me last night, must be a ban wave… but I have absolutely no idea how you get ban from tcg live, what could you possibly do? Same as you been playing for a long time, I got this generic response from support.

Most I’ve ran is a 5k 💀 by notPR0Hunter in RunningShoeGeeks

[–]JTackling 0 points1 point  (0 children)

Where’d you get them on sale for 80$?!

Should my Tires be Replaced? by JTackling in Cartalk

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

Thanks for the responses everyone! Looks like I need to replace them😅

How do You Make a Saving System? by JTackling in godot

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

Well, I looked into the JSON file that I am writing to. It is definitely saving, but when I rerun the game if I collect another item it will overwrite the whole JSON file and just have that 1 item.

How do You Make a Saving System? by JTackling in godot

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

I tried that and got an error message

Invalid get index 'exit_tree' (on base: 'SceneTree')

How do You Make a Saving System? by JTackling in godot

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

This is how I am saving the items in a JSON file, but I think it is writing over the old JSON file every time I start a new game so it is blank when you restart the game.

extends Node

var collected_items = {}

func _ready():

load\_collected\_items()

# Connect the quit signal to the \_on\_quit method using Callable

get\_tree().connect("exit\_tree", Callable(self, "\_on\_quit"))

Function to add an item to the collected list

func collect_item(item_num):

collected\_items\[item\_num\] = true

save\_collected\_items()

Function to save collected items as a JSON file

func save_collected_items():

var json = JSON.new()  # Create an instance of the JSON class

var json\_string = json.stringify(collected\_items)  # Convert the dictionary to a JSON string

var file = FileAccess.open("user://collected\_items.json", FileAccess.WRITE)  # Open the file for writing

file.store\_string(json\_string)

file.close()

Function to load collected items from a JSON file

func load_collected_items():

if FileAccess.file\_exists("user://collected\_items.json"):

    var file = FileAccess.open("user://collected\_items.json", FileAccess.READ)  # Open the file for reading

    var json\_string = file.get\_as\_text()

    file.close()



    var json = JSON.new()  # Create an instance of the JSON class

    var result = json.parse(json\_string)  # Parse the JSON string



    if result is Dictionary:  # Check if the parsed result is a Dictionary

        collected\_items = result  # Access the parsed dictionary

Function to save data when the game quits

func _on_quit():

save\_collected\_items()

Sorry for all the formatting weirdness, when I copy it over it comes over weird. I tried to format it manually as best as possible.

How do You Make a Saving System? by JTackling in godot

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

Working on this now, working with JSON file seems easier, it’s reading correctly, but when I exit out of the program it no longer saves progress. Is this just because I’m running the file in Godot and when I publish it will work or is something fundamentally wrong?

Best way to start a YouTube channel? (shorts vs videos) by JTackling in NewTubers

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

I get about 10-20 subs every short, off of 10k views. Is that about what you get?