Let's make references to a Title, a normal target, and an inline target.
This paragraph is the normal target.
This paragraph contains an inline target.
Let's make references to a Title, a normal target, and an inline target.
This paragraph is the normal target.
This paragraph contains an inline target.
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# This is free and unencumbered software released into the public domain. | |
# | |
# Anyone is free to copy, modify, publish, use, compile, sell, or | |
# distribute this software, either in source code form or as a compiled | |
# binary, for any purpose, commercial or non-commercial, and by any | |
# means. | |
# |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright 2015, Ekevoo.com. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in | |
# compliance with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
from random import random | |
from sys import argv, exit | |
from time import sleep | |
from Quartz.CoreGraphics import CGEventCreateMouseEvent, kCGMouseButtonLeft, CGEventPost, kCGHIDEventTap, kCGEventMouseMoved, kCGEventLeftMouseDown, kCGEventLeftMouseUp, CGEventCreate, CGEventGetLocation | |
from Quartz import NSResponder | |
def fight_luna(attack): | |
try: |