v35.0 Verse Bug

Summary

I can no longer type cast an Agent into a Player as it no longer recognizes what an agent type is?

Please select what you are reporting on:

Creative

What Type of Bug are you experiencing?

Assets

Steps to Reproduce

Open verse after the update

Expected Result

Type conversion to still work

Observed Result

Type conversion doesn’t work

Platform(s)

PC, Windows

Upload an image

Screenshot 2025-05-02 123550.png

My entire verse is red yet i can build verse code.

So many errors
idk how im gunna write code in these conditions tbh how will you know whats a genuine error

I have an Await and its not recognizing it

@Flak Can this be looked at please its extremely difficult to even progress using verse now as its affecting creator scrips not just epics ones

1 Like

I have the same issues. Verse showing syntax errors but “Build Verse Code” completes Successfully.

FORT-899926 has been created and its status is ‘Unconfirmed’. This is now in a queue to be reproduced and confirmed.

Yeah .Await is now a syntax error.

How can we be expected to use verse like this its crazy. I understand its still in dev but give us a verse that doesn’t bug. I think imma not touch it now until they fix it as i cannot do this.

agreed its unusable…current game we are working on has like 30 await statements…the whole thing is red.

i have maybe 100 :frowning: cnt use it tbh not even gunna try i will do other things. Hoping its a quick fix or they give us a work around or a version that works. Did you try switching back to 0 version do that help ?

I dont wanna mess but they might be able to give us a version without all the baggage

I can’t seem to replicate it? I could cast player[Agent] without any errors.

1 Like

Just to bring some clarification to this, the issue isn’t generally casting player[Agent]. This works as intended as @Mineblo pointed out above.

The issue is trying to cast [player]Agent after retrieving the Agent from a listenable event. Below I have a snippet of my code from a Tycoon project that is running into this issue.

4 Likes

Thankyou for confirming the issue i just assumed it was the direct agent cast does it also show the loop error for your await() ? doesn’t seem like it in your snip

Yes the solution is to add a break in the loop (I added Sleep(0.0) as shown in the code which cleared the error but I have not tested it)

I see yeah, I did not realize this. Thank you for the clarification!