Seemann
Seemann
What do you mean by restore? 00C5/00C6 are functional in III/VC
It is functional in VC via http://www.gtamodding.com/wiki/Opcodes_Restoration_Project or with alternate opcodes 0485, 059A. Those are valid for SA either.
Do we really need this opcode in such constructions? For example, Sanny Builder treats `while true` as a single unconditional jump: ``` :loop jump @loop ``` If you want to...
This list deserves to be added to the [GTAModding](http://www.gtamodding.com/wiki/Opcode#Strings) wiki too.
As an intermediate solution we postinstall-patch `lib.mock.d.ts` to remove `/// ` and it seems to be working fine, but I don't know all possible outcomes. I see there is a...
This has been implemented in CLEO Redux https://github.com/cleolibrary/CLEO-Redux#permissions
@Deji69 any idea why do we have this function hooked?
@GoKuDead please don't post your questions in random tickets. Use public boards like gtaforums or scripting-related discord channels. If you want to know how scripts work you should start from...
I think adding `chdir` command in user scripts was a mistake as it mutates the global state and lead to subtle bugs and race conditions. Ultimately the goal was to...
>Fortunately in this game chdir only happen in the main thread. So it's not too game breaking as happened in this issue. Problem's is more on cooperative scripts racing between...