Originally Posted by jaisontuf would send an updated source? Code: void Do(const char* cmd) { _asm { PUSH cmd MOV EAX, 0x485E10 CALL EAX ADD ESP, 0x4 } }
Originally Posted by NOOB Code: void Do(const char* cmd) { _asm { PUSH cmd MOV EAX, 0x485E10 CALL EAX ADD ESP, 0x4 } } Is this for real? O.O I can see a few flaws i think :/
Well, to do a "PTC" (Push to Commandline) you do this #include <iostream> int main() { std::cout << "Learn to code, and use gellins base to start" << std::endl; return 0; }