Aldrin John Olaer Manalansan

Results 30 comments of Aldrin John Olaer Manalansan

Tool limitation, sorry. Try downloading arcana mods at the web. Then put the MOD files inside the [external files folder](https://www.youtube.com/watch?v=eG2XRCj7Sy0&t=365s) to merge it to your MOD everytime you press **generate...

> > Tool limitation, sorry. > > Try downloading arcana mods at the web. Then put the MOD files inside the [external files folder](https://www.youtube.com/watch?v=eG2XRCj7Sy0&t=365s) to merge it to your MOD...

> Yes, correct. For the moment, you can edit this line to add the flag: https://github.com/joedf/MCode4GCC/blob/de0ea3addc7477e82189ed04e2ea1dad47e31acc/MCode4GCC.ahk#L172C1-L172C57 Or you can maybe add the flag in the gcc/compiler path. That's exactly what...

> In previous versions, variable declarations have been implemented > https://docs.sannybuilder.com/coding/variables > Please read the rest of the document carefully Like I said Above, redeclaring variable data types is inconvenient:...

This is not implemented yet, and I tried to compile it and is gives an error(obvious). ```C++ float 4@ -= 1@ ``` Only inconvenient variable declarations before arithmetic operations is...

Just to clarify, I did not said that Variable declarations wasn't implemented yet. I use variable declaration all the time in my cleo scripts, but it is just so inconvenient....

> For commands that use 2 variables, both variables need to be declared: > > ``` > float 0@ > float 1@ > 0@ -= 1@ > ``` > >...

The compiler just needs to parse the parameters that are currently present on the currently line. I don't see anything wrong with that. 1) The compiler will scan either **(Int,...

> Consider this example: > > ``` > float a = 1.0 > int b = 1 > int c = 0 > > int c += a > ```...