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
| <!DOCTYPE html> | |
| <html lang="ko"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>메이플 사냥 타이머</title> | |
| <style> | |
| /* 기본 설정 */ | |
| body { | |
| background-color: #1e1e1e; |
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
| void main() { | |
| int b = funcInt(3); | |
| print(b); | |
| } | |
| int funcInt(int a) { | |
| int n = 10; | |
| n = n + a; | |
| return n; | |
| } |
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
| void main() { | |
| int n = 0; | |
| while (n <= 10) { | |
| n = n + 1; | |
| if (n == 7) | |
| break; | |
| if (n % 3 == 0) | |
| continue; | |
| print(n); |
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
| void main() { | |
| for (int i = 1; i <= 5; i++) { | |
| print(i); | |
| } | |
| } |
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
| void main() { | |
| int n = 5; | |
| if (n > 10) { | |
| print("n > 10"); | |
| } else { | |
| print("n <= 10"); | |
| } | |
| } |
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
| import pyautogui | |
| from time import sleep | |
| # 5초 후 프로그램 실행 | |
| sleep(5) | |
| locate = pyautogui.position() | |
| while True: | |
| current = pyautogui.position() | |
| # 움직이면 매크로 해제 |