This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((![]+[])[+!+[]]+(![]+[])[!+[]+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]+(!![]+[])[+[]]+(![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| // Instruction | |
| /* | |
| NOP : No Operation | |
| LOADI dest, imm : Load immidiate to 'dest' register | |
| LOADA dest, addr : Load address to 'dest' register | |
| ADD dest, op1, op2 : Add 'op1' and 'op2' and save to 'dest' register | |
| SUB dest, op1, op2 : Subtract 'op1' and 'op2' and save to 'dest' register | |
| PRINT registers : Print registers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <Windows.h> | |
| const DWORD WCA_ACCENT_POLICY = 19; | |
| enum ACCENT_STATE | |
| { | |
| ACCENT_DISABLED = 0, | |
| ACCENT_ENABLE_GRADIENT = 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This code is licensed with: GPL or LGPL | |
| #include <cmath> | |
| #include <iostream> | |
| template <class T> | |
| class Vector3 | |
| { | |
| public: | |
| T x, y, z; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Vector2D | |
| { | |
| public: | |
| float x; | |
| float y; | |
| Vector2D() {} | |
| Vector2D(float r, float s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // byteandahalf tiny hook | |
| // ini bukan buatan gw | |
| #include "sys/mman.h" | |
| void tiny_hook(uint32_t* addr, uint32_t hook) { | |
| bool thumb = (uint32_t)addr & 1; | |
| if(thumb) | |
| addr = (uint32_t*) ((uint32_t) addr - 1); | |
| mprotect(addr, 9, PROT_READ | PROT_WRITE); | |
| *addr = (uint32_t) (thumb)? 0xF000F8DF : 0xE51FF008; // LDR PC, [PC] di Thumb trus LDR PC, [PC, #-8] di ARM. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ModPE Indo API | |
| function buatPesanClient(isiPesan) { | |
| clientMessage(isiPesan); | |
| } | |
| function terapkanPosisi(idEnt,posX,posY,posZ) { | |
| setPosition(idEnt,posX,posY,posZ); | |
| } | |
| function memperolehWujudPemain() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <jni.h> | |
| #include <dlfcn.h> | |
| #include <string.h> | |
| #include <string> | |
| #include "mcpelauncher.h" | |
| using namespace std; | |
| string (*VersiAsli)(void* gusti); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| // Tanda ini berarti komentar atau tanda teks yg diabaikan | |
| /* Ini juga sama kayak yg tadi */ | |
| using namespace std; // kita mempergunakan namespace utk tidak memakai tanda "::" | |
| int main() { | |
| cout << "MMPEI, Minecraft/ Minecraft Pocket Edition Indonesia" << endl; // ini akan menampilkan tulisan | |
| cout << "Farhan Abdullah Spensaka" << endl; | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <fstream> | |
| using namespace std; | |
| int main() { | |
| ofstream fileTXT; | |
| fileTXT.open("filecontoh.txt"); | |
| fileTXT << "Teks disini\n"; | |
| fileTXT.close(); |