MiranDMC

Results 60 comments of MiranDMC

Forbidding usage of global variables seems too strict. If you really want to force people stop messing global variables via .cs, maybe Sanny should require some macro in script to...

Yep I keep forgetting about dynamic allocation of new globals just by using new variable name. This is problematic case. In all other scenarios (well known global variables like $PLAYER_CHAR...

By the way it is worth consider of using new `is_truthy` opcode for code like `return value` inside logical functions.

I use form ```read_memory 0@ = from 0@ size 4 virtual_protect 0``` Great idea, but the Ctrl+Alt+2 documentation have to propose new syntax too, same with code generated during decompilation.

Just realized that F1 hotkey is performing similar action, but it removes current indentations and inserts unwanted opcode number. Also it inserts random opcodes when used with line that contains...

Ok, this ticket seems to be almost duplicate of https://github.com/sannybuilder/dev/issues/169 where OP request solution for the same problem. Said topic is years old, so guess no high hopes for solution...

After some code developing later I have to say this is pain. Argument from #169 against feature like this was that it can lead to errors when already defined variable...

Scope support would be helpful. There should be also way to create scope on demand, like: `scope (...) end` Routines with return could be problematic to handle, but it can...

Hm, why not use external asm compiler? You can then include its output file as hex block. How would it work in Sanny? ASM compiler (platform) will be selected according...

> switch between different assembly engines based on Sanny's game mode, it is preferable to use an internal assembly compiler. Assuming you create script that works on multiple platforms you...