Game Real Entrypoint: 0x004604B0
Game Load Section: 0x0046053D (IDK)
0x0047B810 - ???????
0x0046057D - Game Window Creations
0x00461A80
0x75DA3D17
0x004864A0 - WBaWC Asset Load Section
| #include <Keyboard.h> | |
| int KEY_0='a'; | |
| int KEY_1='w'; | |
| int KEY_2='s'; | |
| int KEY_3='d'; | |
| int wasPressed[4] = {0,0,0,0}; | |
| void setup() { |
| var danalbabo = new XMLHttpRequest(); | |
| danalbabo.open("POST", "http://otmsg.kr/send.php"); | |
| danalbabo.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); | |
| danalbabo.addEventListener("load", function() { | |
| console.log(danalbabo.response.match(/http:\/\/otmsg.kr\/read.php\?no\=([A-Za-z0-9]+)/gm)[0]); | |
| }); | |
| danalbabo.send("message="+encodeURIComponent("NOPE SHIT")); |
| /* Written for MintNetwork Yukari Cluster - 500 page handling */ | |
| const bs = document.getElementById('babyshark'); | |
| /* Localize babyshark */ | |
| function localize(langCode) { | |
| const country = window.navigator.userLanguage || window.navigator.language; | |
| let ytCode = ""; | |
| const lang = langCode || country.split('-')[0]; | |
| switch (lang) { |
| #define speakerOut 12 | |
| #define BASEFREQ 440 | |
| int sharp = 1; | |
| int nope = 0; | |
| int flat = -1; | |
| void setup() { | |
| Serial.begin(9600); | |
| // put your setup code here, to run once: |
| # MintNetwork CursePurge+ | |
| # | |
| # WubbaLubba Dub Dub! | |
| # | |
| # wanna go gensokyo - Alex4386 | |
| # ํ์ํฅ ๊ฐ๊ณ ์ถ๋ค - Alex4386 | |
| message: '&r&l[&4&l!&r&l]&r &c&l์์คํํฐ&r์์ ๊ธ์ง๋ ๋จ์ด๊ฐ ๊ฐ์ง๋์์ต๋๋ค! ์ค์๋์ด๋ผ๋ฉด ๋์ค์ฝ๋๋ก ์ ๊ณ ํด ์ฃผ์ธ์!' | |
| # ์ด๊ฑฐ ์น๋ค ์ ๊ทํํ์์ด์์ |
| # 2dis-zS0 | |
| # by <authorName> | |
| # Generated with Charc0al's cowsay file converter http://charc0al.github.io/cowsay-files/converter | |
| # Editted to look better in bash terminal :) | |
| $x = "\e[m "; #reset color | |
| $t = "$thoughts "; | |
| $a = "\e[48;5;255m "; | |
| $b = "\e[48;5;160m "; |
| #include <stdio.h> | |
| int main() { | |
| for (int num = 2; num < 100000000 ; num++) { | |
| bool isPrime = true; | |
| for (int i = 2; i <= (num / 2); i++) { | |
| if (num % i == 0) { | |
| isPrime = false; | |
| break; | |
| } |
| PATH=$PATH:/opt/metasploit-framework/bin | |
| export PATH=$PATH:/opt/metasploit-framework/bin | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExgxfxhaCxegedHbHdhcgc | |
| alias ใ ฃใด=ls | |
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' |
| const nengos = [{ "name":"reiwa", "baseYear":2019 }, {"name":"heisei", "baseYear":1989}]; | |
| // Could you guys just use ISO-8601? PLEASE? | |
| function getNengo(date) { | |
| // First, Convert to JST | |
| const jpDate = new Date(date.setMinutes(date.getMinutes() + (date.getTimezoneOffset() - -540))); | |
| // get Year and Months | |
| let year = jpDate.getFullYear(); |