Sinisterly
C++ Guide (roblox exploiting) | VERY EASY| - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: C, C++, & Obj-C (https://sinister.ly/Forum-C-C-Obj-C)
+--- Thread: C++ Guide (roblox exploiting) | VERY EASY| (/Thread-C-Guide-roblox-exploiting-VERY-EASY)

Pages: 1 2


RE: C++ Guide (roblox exploiting) | VERY EASY| - phyrrus9 - 12-21-2018

(12-20-2018, 11:55 PM)Confidential Wrote:
(04-11-2018, 12:57 AM)phyrrus9 Wrote:
(04-23-2017, 10:44 PM)Pikami Wrote: So how do I "make a LEEEVEEL 7"?
Your post just links to educational videos on programming languages...
What does roblox have to do with anything in your thread?

Not to mention just about everything in this thread is either inaccurate or blatantly wrong. Python and Lua are nothing like C, and by no means are either of them "programming languages". Secondly, I don't think OP knows what embedded computing is. Maybe emulated or scripted software, but this is far from embedded.

Lua isn't "far from embedded" at all, actually. Lua is EXTREMELY easy to embed. It's literally designed to embed into C/C++ programs (which is what the Lua C API is for). Take a look at World Of Worldcraft. It uses an embedded Lua version to help maintain the game's UI elements.

Embedded typically means embedded hardware. Things like this usually don't use common instruction sets like AMD64 or ARM in favor of things like HSC12 or VAX. More often than not, you'll find a PIC2 microcontroller at the heart of an embedded device. Just because you've added a language parser to a program does not make it embedded programming, it makes it a language parser itegral to a program.


RE: C++ Guide (roblox exploiting) | VERY EASY| - Confidential - 12-22-2018

(12-21-2018, 12:09 AM)phyrrus9 Wrote:
(12-20-2018, 11:55 PM)Confidential Wrote:
(04-11-2018, 12:57 AM)phyrrus9 Wrote: Not to mention just about everything in this thread is either inaccurate or blatantly wrong. Python and Lua are nothing like C, and by no means are either of them "programming languages". Secondly, I don't think OP knows what embedded computing is. Maybe emulated or scripted software, but this is far from embedded.

Lua isn't "far from embedded" at all, actually. Lua is EXTREMELY easy to embed. It's literally designed to embed into C/C++ programs (which is what the Lua C API is for). Take a look at World Of Worldcraft. It uses an embedded Lua version to help maintain the game's UI elements.

Embedded typically means embedded hardware. Things like this usually don't use common instruction sets like AMD64 or ARM in favor of things like HSC12 or VAX. More often than not, you'll find a PIC2 microcontroller at the heart of an embedded device. Just because you've added a language parser to a program does not make it embedded programming, it makes it a language parser itegral to a program.

Alright, I see where you're coming from now. My bad.