serverfiles

This commit is contained in:
metin2clean 2024-06-01 15:52:09 -05:00
parent 4b7d4f2373
commit f47eed4544
8854 changed files with 465435 additions and 0 deletions

12
serverfiles/.gitattributes vendored Normal file
View File

@ -0,0 +1,12 @@
### default behavior
* text=auto eol=lf
## note: eol in text auto is fixed since git 2.10 (31 aug 2016)
### windows (always crlf)
*.bat eol=crlf
*.txt eol=crlf
### unix (always lf)
*.sh eol=lf
*.bash eol=lf
*.py eol=lf

54
serverfiles/.gitignore vendored Normal file
View File

@ -0,0 +1,54 @@
*.pyc
*.pyo
__pycache__/
db
game
alog
logs/
auth*/
chan/
bin/
*.core
.svn
*.gr2
*.dds
*.tga
*.jpg
*.jpeg
*.mde
*.mdatr
### archives
*.rar
*.7z
*.zip
*.gz
*.bz
*.xz
*.tar
*.tgz
*.tbz
*.txz
*.o
*.obj
a.out
.pre_qc/
pre_qc/
object/
!baks/db
log.txt
# generated files
start.list
clear.list
.clear.json
.start.json
ipfw.rules
serverinfo.py
/.project

View File

@ -0,0 +1,55 @@
#### @martysama0134 backup scripts ####
### Inside /etc/crontab paste:
## for automatic backups every hour:
# 0 * * * * root make -C /home/metin2/baks/db dump
## for automatic clean of backups older than 7 days every week:
# 0 0 * * 1 root make -C /home/metin2/baks/db wclean
DATE != date +%Y%m%d-%H%M%S
MY_HOST = localhost
MY_USER = root
MY_PASS = password
MY_LOGF = log.txt
PREFIX = srv1_
OUTPATH = .
all:
@echo "available all, dump, recovery, clean, lclean, wclean, cleanall"
@echo "TEST: -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) > $(PREFIX)$(DATE).sql"
dump:
@echo "### dump begin $(DATE)" >> $(MY_LOGF)
@mkdir $(DATE)/
@/usr/local/bin/mysqldump --set-gtid-purged=OFF -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account | gzip -9 > $(OUTPATH)/$(DATE)/$(PREFIX)account.sql.gz 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --set-gtid-purged=OFF -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common | gzip -9 > $(OUTPATH)/$(DATE)/$(PREFIX)common.sql.gz 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --set-gtid-purged=OFF -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player | gzip -9 > $(OUTPATH)/$(DATE)/$(PREFIX)player.sql.gz 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --set-gtid-purged=OFF --no-data -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)log | gzip -9 > $(OUTPATH)/$(DATE)/$(PREFIX)log.sql.gz 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --set-gtid-purged=OFF -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) mysql | gzip -9 > $(OUTPATH)/$(DATE)/mysql.sql.gz 2>> $(MY_LOGF)
@echo "### dump end $(DATE)" >> $(MY_LOGF)
recovery:
@echo "### recovery begin $(DATE)" >> $(MY_LOGF)
@gunzip < mysql.sql.gz | mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) mysql 2>> $(MY_LOGF)
@gunzip < $(PREFIX)account.sql.gz | mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account 2>> $(MY_LOGF)
@gunzip < $(PREFIX)common.sql.gz | mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common 2>> $(MY_LOGF)
@gunzip < $(PREFIX)player.sql.gz | mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player 2>> $(MY_LOGF)
@gunzip < $(PREFIX)log.sql.gz | mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)log 2>> $(MY_LOGF)
@echo "### recovery end $(DATE)" >> $(MY_LOGF)
clean:
@find $(OUTPATH) ! -name Makefile ! -name $(OUTPATH) -exec rm -rf {} +
lclean:
@cat /dev/null > $(MY_LOGF)
wclean:
@echo "### clean week begin $(DATE)" >> $(MY_LOGF)
@find $(OUTPATH) ! -name Makefile ! -name $(OUTPATH) -type d -mtime +7 -print -exec rm -rf {} + >> $(MY_LOGF)
@echo "### clean week end $(DATE)" >> $(MY_LOGF)
cleanall: clean lclean
@echo "### clean all done $(DATE)" >> $(MY_LOGF)

View File

@ -0,0 +1,55 @@
#### @martysama0134 backup scripts ####
### Inside /etc/crontab paste:
## for automatic backups every hour:
# 0 * * * * root make -C /home/metin2/baks/db-rev dump
DATE != date +%Y%m%d-%H%M%S
MY_HOST = localhost
MY_USER = root
MY_PASS = password
MY_LOGF = /dev/null #log.txt
PREFIX = srv1_
ACCOUNT_TABLES = block_exception GameTime GameTimeIP iptocountry string
PLAYER_TABLES = banword item_attr item_attr_rare item_proto land mob_proto object_proto refine_proto shop shop_item skill_proto string
OUTPATH = .
all:
@echo "available all, dump, recovery, clean, lclean, cleanall"
@echo "TEST: -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) > $(PREFIX)$(DATE).sql"
dump:
@echo "### dump begin $(DATE)" >> $(MY_LOGF)
@### struct only
@/usr/local/bin/mysqldump --no-data --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account > $(OUTPATH)/$(PREFIX)account-schema.sql 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --no-data --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common > $(OUTPATH)/$(PREFIX)common-schema.sql 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --no-data --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player > $(OUTPATH)/$(PREFIX)player-schema.sql 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --no-data --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)log > $(OUTPATH)/$(PREFIX)log-schema.sql 2>> $(MY_LOGF)
@### data only
@/usr/local/bin/mysqldump --no-create-info --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account $(ACCOUNT_TABLES) > $(OUTPATH)/$(PREFIX)common-data.sql 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --no-create-info --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common > $(OUTPATH)/$(PREFIX)common-data.sql 2>> $(MY_LOGF)
@/usr/local/bin/mysqldump --no-create-info --skip-extended-insert --skip-dump-date -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player $(PLAYER_TABLES) > $(OUTPATH)/$(PREFIX)player-data.sql 2>> $(MY_LOGF)
@echo "### dump end $(DATE)" >> $(MY_LOGF)
recovery:
@echo "### recovery begin $(DATE)" >> $(MY_LOGF)
@# schema
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)account-schema.sql
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)common-schema.sql
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)log 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)log-schema.sql
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)player-schema.sql
@# data
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)account 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)account-data.sql
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)common 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)common-data.sql
@# @mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)log 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)log-data.sql
@mysql -u $(MY_USER) -p$(MY_PASS) -h $(MY_HOST) $(PREFIX)player 2>> $(MY_LOGF) < $(OUTPATH)/$(PREFIX)player-data.sql
@echo "### recovery end $(DATE)" >> $(MY_LOGF)
clean:
@rm -f $(OUTPATH)/*.sql
lclean:
@cat /dev/null > $(MY_LOGF)
cleanall: clean lclean
@echo "### clean all done $(DATE)" >> $(MY_LOGF)

View File

@ -0,0 +1,37 @@
#### @martysama0134 backup scripts ####
## Inside /etc/crontab paste: (for automatic backups every hour)
# 0 * * * * root make -C /home/metin2/baks/fs dump
## for automatic clean of backups older than 7 days every week:
# 0 0 * * 1 root make -C /home/metin2/baks/fs wclean
DATE != date +%Y%m%d-%H%M%S
CURPATH != pwd
PATH = ../../
FOLD = main
PATH2 = $(PATH)$(FOLD)
OUTPATH = .
all:
@echo "available all, dump, recovery and clean"
dump:
@cd $(PATH)$(FOLD) && python clear.py
@cd $(CURPATH) && cd $(PATH) && tar -czf mt2_$(DATE).tgz $(FOLD)
@mv $(PATH)mt2_$(DATE).tgz $(OUTPATH)
@echo "backup di $(PATH2) finito"
recovery:
@tar -xzf mt2.tgz -C $(PATH)
@echo "recovery di $(PATH2) finito"
clean:
@rm -f $(OUTPATH)/*.tgz
lclean:
@cat /dev/null > $(MY_LOGF)
wclean:
@echo "### clean week begin $(DATE)" >> $(MY_LOGF)
@find $(OUTPATH) -name "*.tgz" -type f -mtime +7 -print -delete >> $(MY_LOGF)
@echo "### clean week end $(DATE)" >> $(MY_LOGF)

View File

@ -0,0 +1,73 @@
### How to execute admin_panel.sh
READ THE README-MAIN.txt to know how to setup gen_settings.py and the mysql backups!
## Set the privileges:
chmod u+x *.py *.sh
## You can execute it in several ways:
# via number as argument
python admin_panel.py 1
# via number as input
python admin_panel.py
1
# via name as argument
python admin_panel.py start
# via name as input
python admin_panel.py
# and also... via sh
python admin_panel.py
### List of the admin_panel.sh options:
## 1. Start (start)
# You start the server
## 1i. Start Interactive (starti)
# You start the server choosing which channel or core start
## 2. Stop (stop)
# You stop the server
## 2i. Stop Interactive (stopi)
# You stop the server choosing which channel or core stop
## 3. Clean (clean|clear)
# You clear the logs
## 33. Clean All (cleanall|clearall)
# You clear the logs and also the backup files
## 4. Backup mysql/db (bak1)
# It will generate a mysql backup in baks/db/
## 5. Backup game/fs (bak2)
# It will generate a fs backup in baks/fs/
## 666. Generate (gen)
# It will generate the server struct
## 777. Compile Quests (quest)
# It will compile the quests
## 888. Symlink (symlink)
# Apply a symlink to share/bin/ game db (useful if you're compiling in the same machine)
## 999. Search (search)
# It will search all the HOSTNAME and PORT settings in each config and print them
# Useful to make the serverinfo.py files... you need to pickup every channelX-core1 PORT
## 1a. Start+Daemon (startall)
# It will start the server and also the daemon script to keep the processes always on
## 2a. Stop+Daemon (stopall)
# It will stop the server and also the daemon script that keeps the processes always on
## 0. Quit (quit)
# Exit from the admin panel script

View File

@ -0,0 +1,136 @@
## Provide the permissions before running the script:
chmod u+x *.py *.sh
# Note: It's totally dynamic symlinked, so every place you put them is fine
### MYSQL BACKUPS
## Setup the Mysql backup:
# Edit baks/db/Makefile the following things:
MY_HOST = localhost
MY_USER = root
MY_PASS = password
OUTPATH = . # output folder by default (.=current)
## Other things
# Make manual backups
cd baks/db/
make dump
# Clean all the backups
cd baks/db/
make clean
# Setup automatic backups every hour pasting this inside the system file /etc/crontab (the path must be correct!)
0 * * * * root make -C /home/metin2/baks/db dump
# Setup automatic backups cleaning every week pasting this inside the system file /etc/crontab (the path must be correct!)
0 0 * * 1 root make -C /home/metin2/baks/db wclean
## Recovery from backup
cd baks/db/
# rename the specific backups as account.sql.gz common.sql.gz log.sql.gz player.sql.gz inside the folder
make recovery
### FS BACKUPS
## Setup the FS backup:
# Edit baks/fs/Makefile the following thing:
FOLD = srv1 #metin2 folder generated by gen.py
OUTPATH = . #output folder by default (.=current)
# Make manual backups
cd baks/fs/
make dump
# Clean all the backups
cd baks/fs/
make clean
# Setup automatic backups every hour pasting this inside the system file /etc/crontab (the path must be correct!)
0 * * * * root make -C /home/metin2/baks/fs dump
# Setup automatic backups cleaning every week pasting this inside the system file /etc/crontab (the path must be correct!)
0 0 * * 1 root make -C /home/metin2/baks/fs wclean
## Recovery from backup
cd baks/fs/
# rename the specific backup as mt2.tgz inside the folder
make recovery
### How to generate the server structure:
## Set up gen_settings.py
# The M2CONFIG table contains all the values that will be used for every db/conf.txt, and game/Config
# Be free to edit them as you want
## Generate all:
python admin_panel.py gen
# Note: You can run gen.py even if the metin2 server is running just to refresh the config files
### How to manage the server (manually):
## To start the server:
python admin_panel.py start
## To stop the server:
python admin_panel.py stop
## To clear the logs:
python admin_panel.py clear
### Additional notes:
## To run specific channels and cores
python admin_panel.py starti
## Run a daemon script to keep up all the processes always on:
python admin_panel.py startall
## Stop the daemon script
python admin_panel.py stopall
## Start the processes specifying IP (-I) and LOG_LEVEL (-l)
python start.py -I 127.0.0.1 -l 1
## Forcefully stop all the processes (-l SIGNAL_LEVEL)
python stop.py -l 9
### Common Issues/Notes
# The daemon scripts will run all the processes, so you can't select which channels/cores to run
# Don't use the `stopi` option so far.
# start.list and clear.list are json files generated by gen.py; don't touch them
# ipfw.rules is created by the gen.py; don't use it if you don't know how to implement it
# /etc/crontab is a file system used for automatic tasks; Every edit becomes already valid the moment you add it in the file (i won't explain its parsing)
# the stop script will wait for all the game processes to be closed (it's usually not more than 300 seconds) before killing db so that all the items/etc will be safely saved even without doing /shutdown in game
### IPFW RULES IMPLEMENTATION (you will be locked out of your server if you fuck up something)
## Add in /etc/rc.conf
# Firewall
firewall_enable="YES"
firewall_type="open"
firewall_script="/path/of/your/ipfw.rules"
firewall_logging="YES"
## Restart the ipfw service
service ipfw restart
## Important Notes
# Be sure to save the ipfw.rules without \r\n lines but only \n lines; Notepad++ -> Edit -> EOL Conversion -> UNIX Format (LN \n)
# Be sure to save the ipfw.rules as ANSI; Notepad++ -> Format -> Convert to ANSI

View File

@ -0,0 +1,233 @@
#!/usr/local/bin/python3
#### @martysama0134 start scripts ####
import os
import sys
import subprocess
from gen import IsWindows
def fecho(text): print(text) if IsWindows() else print("\033[35m" + text + "\033[0m")
def _fecho(text): print(text) if IsWindows() else print("\033[4;35m" + text + "\033[0m")
def f_echo(text): print(text) if IsWindows() else print("\033[1;35m" + text + "\033[0m")
def becho(text): print(text) if IsWindows() else print("\033[34m" + text + "\033[0m")
def yecho(text): print(text) if IsWindows() else print("\033[33m" + text + "\033[0m")
def _yecho(text): print(text) if IsWindows() else print("\033[4;33m" + text + "\033[0m")
def y_echo(text): print(text) if IsWindows() else print("\033[1;33m" + text + "\033[0m")
def gecho(text): print(text) if IsWindows() else print("\033[32m" + text + "\033[0m")
def recho(text): print(text) if IsWindows() else print("\033[31m" + text + "\033[0m")
def _recho(text): print(text) if IsWindows() else print("\033[4;31m" + text + "\033[0m")
def r_echo(text): print(text) if IsWindows() else print("\033[1;31m" + text + "\033[0m")
def cecho(text): print(text) if IsWindows() else print("\033[36m" + text + "\033[0m")
def ruecho(text): print(text) if IsWindows() else print("\033[1;4;33;41m" + text + "\033[0m")
def bnecho(text): print(text) if IsWindows() else print("\033[1;4;30;47m" + text + "\033[0m")
def rnecho(text): print(text) if IsWindows() else print("\033[1;4;30;41m" + text + "\033[0m")
def abio(text): print(text) if IsWindows() else print("\033[31m" + text + "\033[32m" + text + "\033[33m" + text + "\033[34m" + text + "\033[35m" + text + "\033[36m" + text + "\033[37m" + text + "\033[0m")
def run_command(cmd):
subprocess.run(cmd.split())
def search_for_port_in_configs(path):
for root, dirs, files in os.walk(path):
for file in files:
if file == "CONFIG":
config_file_path = os.path.join(root, file)
with open(config_file_path, 'r') as f:
for line in f:
if "PORT" in line:
print(line.strip())
def delete_file(filepath):
if os.path.exists(filepath):
if os.path.islink(filepath):
os.unlink(filepath)
else:
os.remove(filepath)
def delete_symlink(filepath):
try:
os.unlink(filepath)
except FileNotFoundError:
pass
v_base = os.getcwd()
v_mt2f = v_base
v_bakf = os.path.join(v_base, '..', 'baks')
v_dbf = os.path.join(v_bakf, 'db')
v_dbrevf = os.path.join(v_bakf, 'dbrev')
v_fsf = os.path.join(v_bakf, 'fs')
v_foldername = 'srv1'
v_localename = 'germany'
v_bin = 'python3'
if IsWindows():
v_bin = 'python'
r_echo(".:. AdminPanel .:.")
gecho("What do you want to do?")
recho("1. Start (start)")
recho("1i. Start Interactive (starti)")
recho("111. Restart (restart)")
recho("111a. Restart+Daemon (restartall)")
recho("111b. Restart+Gen+Quest (fullrestart)")
recho("2. Stop (stop|close)")
recho("2i. Stop Interactive (stopi|closei)")
recho("3. Clean (clean|clear)")
recho("33. Clean All (cleanall|clearall)")
recho("4. Backup mysql/db (bak1|db|db_backup)")
recho("4b. Backup mysql no user-data (dbrev)")
recho("5. Backup game/fs (bak2|fs|fs_backup)")
recho("666. Generate (gen)")
recho("777. Compile Quests (quest)")
recho("888. Game Symlink (symlink)")
recho("999. Search (search)")
_yecho("1a. Start+Daemon (startall)")
_yecho("2a. Stop+Daemon (stopall|closeall)")
_recho("0. Quit (quit)")
if len(sys.argv) < 2:
ret = input('Enter a phase: ').split()
phase = ret[0]
commands = ret[1:] if len(ret) >= 2 else []
else:
phase = sys.argv[1]
commands = sys.argv[2:] if len(sys.argv) >= 3 else []
# print(" ".join(sys.argv[1:]))
commands = " ".join(commands)
if phase in ['111', 'restart']:
os.chdir(v_mt2f)
run_command(f'{v_bin} stop.py')
run_command(f'{v_bin} start.py')
os.chdir(v_base)
cecho('restart completed')
elif phase in ['111a', 'restartall']:
p = subprocess.run(['ps', 'afx'], stdout=subprocess.PIPE)
ps_output = p.stdout.decode()
for line in ps_output.split('\n'):
if 'python daemon_srv1.py' in line and 'grep' not in line:
pid = line.split()[0]
os.kill(pid, 9)
os.chdir(v_mt2f)
run_command(f'{v_bin} stop.py')
run_command(f'{v_bin} start.py')
os.system(f'{v_bin} daemon_srv1.py &')
# subprocess.Popen(["python", "daemon_srv1.py"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, shell=False, preexec_fn=os.setsid)
os.chdir(v_base)
cecho('restartall completed')
elif phase in ['111b', 'fullrestart']:
os.chdir(v_mt2f)
run_command(f'{v_bin} admin_panel.py clear')
run_command(f'{v_bin} admin_panel.py gen')
run_command(f'{v_bin} admin_panel.py quest')
run_command(f'{v_bin} admin_panel.py restart')
os.chdir(v_base)
cecho('restart completed')
elif phase in ['1', 'start']:
os.chdir(v_mt2f)
run_command(f'{v_bin} start.py {commands}')
os.chdir(v_base)
cecho('start completed')
elif phase in ['1i', 'starti']:
os.chdir(v_mt2f)
run_command(f'{v_bin} start.py --prompt')
os.chdir(v_base)
cecho('starti completed')
elif phase in ['1a', 'startall']:
os.chdir(v_mt2f)
os.system(f'{v_bin} daemon_srv1.py &')
# subprocess.Popen(["python", "daemon_srv1.py"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, shell=False, preexec_fn=os.setsid)
os.chdir(v_base)
cecho('startall completed')
elif phase in ['2', 'stop', 'close']:
os.chdir(v_mt2f)
run_command(f'{v_bin} stop.py {commands}')
os.chdir(v_base)
cecho('stop completed')
elif phase in ['2i', 'stopi', 'closei']:
os.chdir(v_mt2f)
run_command(f'{v_bin} stop.py --prompt')
os.chdir(v_base)
cecho('stopi completed')
elif phase in ['2a', 'stopall', 'closeall']:
p = subprocess.run(['ps', 'afx'], stdout=subprocess.PIPE)
ps_output = p.stdout.decode()
for line in ps_output.split('\n'):
if 'daemon_srv1.py' in line and 'grep' not in line:
pid = int(line.split()[0])
print(f"Killing process {pid}")
os.kill(pid, 9)
os.chdir(v_mt2f)
run_command(f'{v_bin} stop.py')
os.chdir(v_base)
cecho('stopall completed')
elif phase in ['3', 'clean', 'clear']:
os.chdir(v_mt2f)
run_command(f'{v_bin} clear.py')
os.chdir(v_base)
cecho('clean completed')
elif phase in ['33', 'cleanall', 'clearall']:
os.chdir(v_mt2f)
response = input("Are you sure you want to delete the backups as well? [Ny] ")
if response.lower() == 'y':
run_command(f'{v_bin} clear.py')
os.chdir(v_base)
run_command(f'make -C {v_dbf} clean')
run_command(f'make -C {v_fsf} clean')
cecho('cleanall completed')
else:
cecho('cleanall cancelled')
elif phase in ['4', 'bak1', 'db', 'db_backup']:
run_command(f'make -C {v_dbf} dump')
cecho('bak db completed')
elif phase in ['4b','dbrev']:
run_command(f'make -C {v_dbrevf} dump')
cecho('bak dbrev completed')
elif phase in ['5', 'bak2', 'fs', 'fs_backup']:
run_command(f'make -C {v_fsf} dump')
cecho('bak fs completed')
elif phase in ['666', 'gen']:
os.chdir(v_mt2f)
# run_command(f'rm -rf {v_foldername}/logs {v_foldername}/auth {v_foldername}/chan {v_foldername}/db')
run_command(f'{v_bin} gen.py')
os.chdir(v_base)
cecho('gen completed')
elif phase in ['777', 'quest']:
os.chdir(os.path.join(v_mt2f, v_foldername, 'share', 'locale', v_localename, 'quest'))
if not IsWindows():
run_command('chmod u+x qc')
run_command(f'{v_bin} pre_qc.py -ac')
os.chdir(v_base)
cecho('quest completed')
elif phase in ['888', 'symlink']:
os.chdir(os.path.join(v_mt2f, v_foldername, 'share', 'bin'))
delete_symlink('game')
delete_symlink('db')
run_command('ln -s /home/s3ll-v5-ex/s3ll_server/Srcs/Server/game/game_symlink game')
run_command('ln -s /home/s3ll-v5-ex/s3ll_server/Srcs/Server/db/db_symlink db')
cecho('symlink completed')
elif phase in ['999', 'search']:
search_for_port_in_configs(v_base)
elif phase in ['0', 'quit']:
abio('.:|:.')
sys.exit()
else:
cecho(f'{phase} not found')

54
serverfiles/main/clear.py Normal file
View File

@ -0,0 +1,54 @@
#!/usr/local/bin/python3
#### @martysama0134 start scripts ####
from subprocess import check_output as sp_co, call as sp_call, CalledProcessError as sp_CalledProcessError
from os import getcwd as os_getcwd, chdir as os_chdir
from platform import system as p_system
from gen import ClearFolder, DeleteFilesVerbose, CreateEmptyFile, IsWindows
def fShell(szCmd, bRet=False):
try:
if bRet:
return sp_co(szCmd, shell=True)[:-1] # remove final \n
else:
return sp_call(szCmd, shell=True)
except sp_CalledProcessError:
return -1
def cleStart():
## base
from json import load as j_loads
v_lst=[
"p2p_packet_info.txt","packet_info.txt","profile.txt","stdout","syslog","syserr",
"usage.txt","VERSION.txt","DEV_LOG.log","mob_count","*.core"
]
if IsWindows():
v_lst+=["stdout.txt","syslog.txt","syserr.txt"]
szPWD=os_getcwd()
## clear files from alog
with open(".clear.json", "r") as fList:
mList = j_loads(fList)
for dic1 in mList:
# goto alog path
# print dic1["path"]
os_chdir(dic1["path"])
# clean files
CreateEmptyFile("PTS")
ClearFolder("log")
ClearFolder("cores")
# goto base again
os_chdir(szPWD)
## clean other logs
with open(".start.json", "r") as fList:
mList = j_loads(fList)
for dic1 in mList:
# goto alog path
# print dic1["path"]
os_chdir(dic1["path"])
fShell("echo --- delete inside '%s' ---"%dic1["path"])
DeleteFilesVerbose(v_lst)
# goto base again
os_chdir(szPWD)
if __name__ == "__main__":
cleStart()
#

View File

@ -0,0 +1,10 @@
#!/usr/local/bin/python3
#### @martysama0134 start scripts ####
import os
import subprocess
import time
while True:
# subprocess.run(['python', 'start.py'])
os.system("python start.py &")
time.sleep(10)

519
serverfiles/main/gen.py Normal file
View File

@ -0,0 +1,519 @@
#!/usr/local/bin/python3
#### @martysama0134 start scripts ####
### TODO:
## clean how rawly CONFIG is shown in code
## separate code for multiple SRV
import fnmatch
import os
import pathlib
import shutil
import time
from gen_settings import *
portlist={}
clearlist=[]
startlist=[]
serverinfolist=[]
def IsWindows():
return v_system=="Windows"
def IsLinuxOrBSD():
return v_system in ("FreeBSD", "Linux")
def SlashFix(pathname):
if v_system in ("FreeBSD", "Linux"):
return pathname.replace("\\", "/")
elif v_system=="Windows":
return pathname.replace("/", "\\")
return pathname
def EscapeString(txt):
if v_system in ("FreeBSD", "Linux"):
txt = txt.replace('"', '\\\"')
return txt
def DeleteFilesVerbose(file_list):
for pattern in file_list:
if "*" in pattern:
for filename in os.listdir('.'):
if fnmatch.fnmatch(filename, pattern):
if os.path.exists(filename):
os.remove(filename)
print(filename)
else:
if os.path.exists(pattern):
os.remove(pattern)
print(pattern)
def ClearFolder(folder_path):
for filename in os.listdir(folder_path):
file_path = os.path.join(folder_path, filename)
try:
if os.path.isfile(file_path) or os.path.islink(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path)
except Exception as e:
print(f"Failed to delete {file_path}. Reason: {e}")
def CreateFolder(foldername):
os.makedirs(foldername, exist_ok=True)
def CreateEmptyFile(file_path, overwrite = True):
if not overwrite and os.path.exists(file_path):
return
with open(file_path, 'w'):
pass
def TouchFile(file_path):
try:
with open(file_path, 'a'):
os.utime(file_path, None)
except OSError:
pass
def Append2File(text, file_path):
with open(file_path, 'a') as f:
f.write(text)
f.write('\n')
def DeleteFolder(path):
shutil.rmtree(path)
def SymLinkCreate(src, dst, is_file):
src = SlashFix(src)
dst = SlashFix(dst)
if v_system=="FreeBSD":
fShell(f"ln -Ffnsw {src} {dst}")
elif v_system=="Linux":
fShell(f"ln -Ffns {src} {dst}")
elif v_system=="Windows":
if is_file:
fShell(f"mklink {dst} {src}")
else:
fShell(f"mklink /D {dst} {src}")
def SymLinkCreateDir(src, dst):
SymLinkCreate(src, dst, is_file=False)
def SymLinkCreateFile(src, dst):
SymLinkCreate(src, dst, is_file=True)
def SymLinkCreateFileExe(src, dst):
if v_system=="Windows":
src+=".exe"
dst+=".exe"
SymLinkCreate(src, dst, is_file=True)
def WriteHostConfig(szConfFile, szGameName):
Append2File(f"HOSTNAME: {szGameName}", szConfFile)
def WriteChannelConfig(szConfFile, dwChannel):
if dwChannel==M2TYPE.NOCHAN:
dwChannel=1
Append2File(f"CHANNEL: {dwChannel}", szConfFile)
def WriteMapConfig(szConfFile, szMapList):
if len(szMapList.split())>=32:
print(f"WARNING: MORE THAN 32 MAPS INSIDE: {szConfFile}")
Append2File(f"MAP_ALLOW: {szMapList}", szConfFile)
def WritePortConfig(szConfFile, wGenPort, dwType, dwPortType=None):
if dwType==M2TYPE.DB:
Append2File(f"{PORT.lPORT[PORT.BIND_PORT]} = {wGenPort}", szConfFile)
elif dwType==M2TYPE.CORE or dwType==M2TYPE.AUTH:
Append2File(f"{PORT.lPORT[dwPortType]}: {wGenPort}", szConfFile)
def genWriteConfig(szConfFile, tuSubConfTable):
for val1 in tuSubConfTable:
try:
if isinstance(val1[1], (list, tuple)):
configValue = val1[0].format(*val1[1])
else:
configValue = val1[0].format(val1[1])
except IndexError:
print(repr(val1))
raise IndexError
#skip test server in ch1
if DISABLE_TEST_MODE_IN_CH1 and configValue.strip()=="TEST_SERVER: 1" and "/ch1/" in szConfFile:
continue
try:
Append2File(f"{configValue}", szConfFile)
except TypeError:
print(f"WARNING: WRONG CONFIG OPTION FORMAT: {val1}")
def genMakeConfig(szConfFile, diConfTable, bIsExtra=False, dwType=None):
genWriteConfig(szConfFile, diConfTable["general"])
if bIsExtra:
genWriteConfig(szConfFile, diConfTable["extra"])
if dwType!=None:
genWriteConfig(szConfFile, diConfTable[dwType])
def genGetRandPort(dwType):
wTmpPort = PORT.RANDOMI
while(True):
if wTmpPort in portlist:
wTmpPort+=1
continue
else:
portlist[wTmpPort]=dwType
break
return wTmpPort
def genGenM2List():
from json import dumps as j_dumps
startFilename = ".start.json"
clearFilename = ".clear.json"
with open(startFilename, "w") as fList: # b for Unix end line
fList.write(j_dumps(startlist, indent=4))
with open(clearFilename, "w") as fList: # b for Unix end line
fList.write(j_dumps(clearlist, indent=4))
print(f"Generated starting files {startFilename} {clearFilename}")
def genGenIpfwList():
def Joi(mList):
return ' '.join(str(v) for v in mList)
szRules=CustIpfwList.format(udp_allowed_ports=Joi(udp_yes_ports), tcp_allowed_ports=Joi(tcp_yes_ports), tcp_blocked_ports=Joi(tcp_nop_ports))
filename = "ipfw.rules"
with open(filename, "w") as fIpfw: #b for unix end line
fIpfw.write(szRules)
print(f"Generated IPFW rules inside {filename}")
def genGenServerInfo():
# print("serverinfolist:\n", serverinfolist)
def calcPortList():
_portlist={}
_pickedchannels={}
_pickedauths={}
for elem in serverinfolist:
if elem["type"]==M2TYPE.AUTH:
newpath = elem["path"].replace("/", "-")
_portlist[newpath] = elem["port"]
_pickedauths[newpath] = elem
elif elem["type"]==M2TYPE.CORE:
if elem["chan"] == 99:
continue
newpath = "ch{}".format(elem["chan"])
if newpath not in _portlist:
_portlist[newpath] = elem["port"]
_pickedchannels[newpath] = elem
_portlistSTR = ""
for elem in _portlist:
_portlistSTR += '\t"{}":{},\n'.format(elem, _portlist[elem])
return _portlist,_portlistSTR,_pickedchannels,_pickedauths
(portlist,portlistSTR,pickedchannels,pickedauths) = calcPortList()
def calcChannelDict():
_channelDictSTR = ""
for elem in pickedchannels:
# print("elem:",elem, pickedchannels[elem])
chan = pickedchannels[elem]["chan"]
serverID = 1
chanID = chan - 1
keyID = serverID * 10 + chanID
chanName = "CH-{}".format(chan)
_channelDictSTR += '\t{chanID}: {{"key":{keyID}, "name":TextColor("{chanName}", "FFffFF"), "ip":SRV1["host"], "tcp_port":SRV1["{elem}"], "udp_port":SRV1["{elem}"], "state":STATE_NONE,}},\n'.format(
chanID=chanID, keyID=keyID, chanName=chanName, elem=elem
)
return _channelDictSTR
channelDictSTR = calcChannelDict()
def calcAuthDict():
_authDictSTR = ""
ENABLE_RANDOM_AUTH = True
if ENABLE_RANDOM_AUTH:
for elem in pickedchannels:
chan = pickedchannels[elem]["chan"]
chanID = chan
_authDictSTR += '\t\t{chanID}: {{"ip": SRV1["host"], "port": get_item_from_list(SRV1["authlist"]),}},\n'.format(
chanID=chanID
)
else:
_firstauth = next(iter(pickedauths))
for elem in pickedchannels:
# print("elem:",elem, pickedauths[_firstauth])
chan = pickedchannels[elem]["chan"]
chanID = chan - 1
_authDictSTR += '\t\t{chanID}: {{"ip": SRV1["host"], "port": SRV1["{_firstauth}"],}},\n'.format(
chanID=chanID, _firstauth=_firstauth
)
return _authDictSTR
authDictSTR = calcAuthDict()
def calcAuthList():
_authListSTR = ""
for elem in pickedauths:
_authListSTR += "{},".format(pickedauths[elem]['port'])
return _authListSTR
authListSTR = calcAuthList()
# print("authListSTR:\n", authListSTR)
# print("portlistSTR:\n", portlistSTR)
# print("channelDictSTR:\n", channelDictSTR)
# print("authDictSTR:\n", authDictSTR)
hostnameSTR = "127.0.0.1"
filename = "serverinfo.py"
with open(filename, "w") as fSI: #b for unix end line
fSI.write(CustServerInfo.format(
hostname=hostnameSTR,
portlist=portlistSTR,
channel_dict=channelDictSTR,
auth_dict=authDictSTR,
authlist=authListSTR
))
print("Generated serverinfo details inside {}".format(filename))
def genInit():
# clean port list
global portlist
portlist.clear()
# clean start/clear list
global startlist, clearlist
del startlist[:]
del clearlist[:]
# clean ipfw list
global udp_yes_ports,tcp_yes_ports,tcp_nop_ports
del udp_yes_ports[:]
del tcp_yes_ports[:]
del tcp_nop_ports[:]
def genInitSrv(szSvr):
#
for val1 in ("share/data","share/locale","share/package","share/panama","share/conf","share/bin"):
CreateFolder("%s/%s"%(szSvr, val1))
# print "%s/%s"%(szSvr, val1)
#
for val1 in ("share/conf/BANIP","share/conf/CMD","share/conf/CRC","share/conf/VERSION","share/conf/state_user_count","share/bin/db","share/bin/game"):
TouchFile("%s/%s" % (szSvr, val1))
# print "%s/%s"%(szSvr, val1)
#
for val1 in ("share/conf/item_names.txt","share/conf/item_proto.txt","share/conf/mob_names.txt","share/conf/mob_proto.txt"):
TouchFile("%s/%s" % (szSvr, val1))
# print "%s/%s"%(szSvr, val1)
#global single server rules
genConfig = {}
genConfig["all"] = {}
#for ipfw rules
udp_yes_ports=[]
tcp_yes_ports=[]
tcp_nop_ports=[]
def genCalcParentRet(szParentName):
return szParentName.count("/")*v_chanPath
def genMain(oSub={}, szParentName=[]):
global genConfig
global startlist, clearlist
global udp_yes_ports, tcp_yes_ports, tcp_nop_ports
global serverinfolist
if not oSub:
oSub=M2S
genInit()
for v1 in oSub:
k1=v1["name"]
listTmpParentName=list(szParentName) # list() to bypass variable passed by reference to value
listTmpParentName.append(k1)
szTmpParentName=("/".join(listTmpParentName))
# DeleteFolder("%s" % szTmpParentName) # completely unsafe
CreateFolder("%s" % szTmpParentName)
# print szTmpParentName
if v1["type"]==M2TYPE.DB:
k1s=genConfig["active"]
#logs make paths
CreateFolder("%s/%s/%s/cores" % (k1s, v_logFolder, szTmpParentName))
CreateFolder("%s/%s/%s/log" % (k1s, v_logFolder, szTmpParentName))
TouchFile("%s/%s/%s/PTS" % (k1s, v_logFolder, szTmpParentName))
#logs sym paths
SymLinkCreateDir("../%s/%s/cores" % (v_logFolder, szTmpParentName), "%s/cores" % (szTmpParentName))
SymLinkCreateDir("../%s/%s/log" % (v_logFolder, szTmpParentName), "%s/log" % (szTmpParentName))
SymLinkCreateFile("../%s/%s/PTS" % (v_logFolder, szTmpParentName), "%s/PTS" % (szTmpParentName))
szDbName="%s-%s"%(genConfig["active"], k1)
SymLinkCreateFileExe("../share/bin/db", "%s/%s" % (szTmpParentName,szDbName))
if IsWindows():
SymLinkCreateFile("../share/bin/libmysql.dll", "%s/libmysql.dll" % (szTmpParentName))
#start/logs track
startlist.append(
{
"path":szTmpParentName,
"name":szDbName,
"type":M2TYPE.DB,
"chan":M2TYPE.NOCHAN,
"serv":genConfig["active"],
}
)
clearlist.append(
{
"path":"%s/%s/%s"%(k1s, v_logFolder, szTmpParentName),
"type":M2TYPE.DB,
"chan":M2TYPE.NOCHAN,
"serv":genConfig["active"],
}
)
#@item/mob protos .txt
SymLinkCreateFile("../share/conf/item_names.txt", "%s/item_names.txt" % (szTmpParentName))
SymLinkCreateFile("../share/conf/item_proto.txt", "%s/item_proto.txt" % (szTmpParentName))
SymLinkCreateFile("../share/conf/mob_names.txt", "%s/mob_names.txt" % (szTmpParentName))
SymLinkCreateFile("../share/conf/mob_proto.txt", "%s/mob_proto.txt" % (szTmpParentName))
#@CONFIG details
CreateEmptyFile("%s/conf.txt"%(szTmpParentName))
genMakeConfig("%s/conf.txt"%szTmpParentName, v1["config"], genConfig["all"][genConfig["active"]]["isextra"])
try:
genConfig["all"][genConfig["active"]]["db_port"]=M2PORTS[szDbName]
except KeyError:
genConfig["all"][genConfig["active"]]["db_port"]=genGetRandPort(v1["type"])
WritePortConfig("%s/conf.txt"%szTmpParentName, genConfig["all"][genConfig["active"]]["db_port"], v1["type"], PORT.BIND_PORT)
#add to ipfw rules
tcp_nop_ports.append(genConfig["all"][genConfig["active"]]["db_port"])
elif v1["type"]==M2TYPE.CHANFOLDER or v1["type"]==M2TYPE.CHANNEL:
if v1["type"]==M2TYPE.CHANNEL:
genConfig["all"][genConfig["active"]]["chan"]=v1["chan"]
if v1["type"]==M2TYPE.CHANFOLDER:
genConfig["all"][genConfig["active"]]["mark"]="%s/mark"%szTmpParentName
CreateFolder("%s" % genConfig["all"][genConfig["active"]]["mark"])
genMain(v1["sub"], listTmpParentName)
elif v1["type"]==M2TYPE.SERVER:
genInitSrv(szTmpParentName)
genConfig["active"]=v1["name"]
genConfig["all"][v1["name"]]={}
genConfig["all"][v1["name"]]["isextra"]=v1["isextra"]
genConfig["all"][v1["name"]]["mark"]="%s/mark"%szTmpParentName
genMain(v1["sub"], listTmpParentName)
elif v1["type"]==M2TYPE.AUTH or v1["type"]==M2TYPE.CORE:
k1s=genConfig["active"]
#logs make paths
CreateFolder("%s/%s/%s/cores" % (k1s, v_logFolder, szTmpParentName))
CreateFolder("%s/%s/%s/log" % (k1s, v_logFolder, szTmpParentName))
TouchFile("%s/%s/%s/PTS" % (k1s, v_logFolder, szTmpParentName))
#logs sym paths
gCPR=genCalcParentRet(szTmpParentName)
SymLinkCreateDir("%s%s/%s/cores" % (gCPR,v_logFolder,szTmpParentName), "%s/cores" % (szTmpParentName))
SymLinkCreateDir("%s%s/%s/log" % (gCPR,v_logFolder,szTmpParentName), "%s/log" % (szTmpParentName))
SymLinkCreateFile("%s%s/%s/PTS" % (gCPR,v_logFolder,szTmpParentName), "%s/PTS" % (szTmpParentName))
#dirs sym paths
SymLinkCreateDir("%sshare/data" % (gCPR), "%s/data" % (szTmpParentName))
SymLinkCreateDir("%sshare/locale" % (gCPR), "%s/locale" % (szTmpParentName))
SymLinkCreateDir("%sshare/package" % (gCPR), "%s/package" % (szTmpParentName))
SymLinkCreateDir("%sshare/panama" % (gCPR), "%s/panama" % (szTmpParentName))
#files sym paths
SymLinkCreateFile("%sshare/conf/CMD" % (gCPR), "%s/CMD" % (szTmpParentName))
SymLinkCreateFile("%sshare/conf/CRC" % (gCPR), "%s/CRC" % (szTmpParentName))
SymLinkCreateFile("%sshare/conf/VERSION" % (gCPR), "%s/VERSION" % (szTmpParentName))
SymLinkCreateFile("%sshare/conf/state_user_count" % (gCPR), "%s/state_user_count" % (szTmpParentName))
if v1["type"]==M2TYPE.AUTH:
SymLinkCreateFile("%sshare/conf/BANIP" % (gCPR), "%s/BANIP" % (szTmpParentName))
if v1["type"]==M2TYPE.AUTH:
szGameName="%s-%s"%(genConfig["active"], k1)
else:
szGameName="%s-ch%u-%s"%(genConfig["active"], genConfig["all"][genConfig["active"]]["chan"], k1)
#mark sym path
if v1["type"]==M2TYPE.CORE:
gCPR2=genCalcParentRet(genConfig["all"][genConfig["active"]]["mark"])
SymLinkCreateDir("%smark" % gCPR2, "%s/mark" % (szTmpParentName))
#core sym path
SymLinkCreateFileExe("%sshare/bin/game" % (gCPR), "%s/%s" % (szTmpParentName, szGameName))
if IsWindows():
SymLinkCreateFile("%sshare/bin/libmysql.dll" % (gCPR), "%s/libmysql.dll" % (szTmpParentName))
SymLinkCreateFile("%sshare/bin/DeviL-1.7.8.dll" % (gCPR), "%s/DeviL-1.7.8.dll" % (szTmpParentName))
SymLinkCreateFile("%sshare/bin/DeviL-1.7.8d.dll" % (gCPR), "%s/DeviL-1.7.8d.dll" % (szTmpParentName))
#start/logs track
if v1["type"]==M2TYPE.AUTH:
kh1=M2TYPE.NOCHAN
else:
kh1=genConfig["all"][genConfig["active"]]["chan"]
startlist.append(
{
"path":szTmpParentName,
"name":szGameName,
"type":v1["type"],
"chan":kh1,
"serv":genConfig["active"],
}
)
clearlist.append(
{
"path":"%s/%s/%s"%(k1s, v_logFolder, szTmpParentName),
"type":v1["type"],
"chan":kh1,
"serv":genConfig["active"],
}
)
#@CONFIG details
CreateEmptyFile("%s/CONFIG" % (szTmpParentName))
genMakeConfig("%s/CONFIG"%szTmpParentName, v1["config"], genConfig["all"][genConfig["active"]]["isextra"], v1["type"])
WriteHostConfig("%s/CONFIG"%szTmpParentName, szGameName)
WriteChannelConfig("%s/CONFIG"%szTmpParentName, kh1)
if not v1["type"]==M2TYPE.AUTH:
WriteMapConfig("%s/CONFIG"%szTmpParentName, v1["maps"])
# w/o array, only if
wTmpPort={}
# PORT process
try:
wTmpPort[PORT.PORT]=M2PORTS[szGameName][0]
except KeyError:
wTmpPort[PORT.PORT]=genGetRandPort(v1["type"])
WritePortConfig("%s/CONFIG"%szTmpParentName, wTmpPort[PORT.PORT], v1["type"], PORT.PORT)
# P2P_PORT process
try:
wTmpPort[PORT.P2P_PORT]=M2PORTS[szGameName][1]
except KeyError:
wTmpPort[PORT.P2P_PORT]=genGetRandPort(v1["type"])
WritePortConfig("%s/CONFIG"%szTmpParentName, wTmpPort[PORT.P2P_PORT], v1["type"], PORT.P2P_PORT)
# DB_PORT process
wTmpPort[PORT.DB_PORT]=genConfig["all"][genConfig["active"]]["db_port"]
WritePortConfig("%s/CONFIG"%szTmpParentName, wTmpPort[PORT.DB_PORT], v1["type"], PORT.DB_PORT)
#add to ipfw rules
if v1["type"]==M2TYPE.AUTH:
udp_yes_ports.append(wTmpPort[PORT.PORT])
tcp_yes_ports.append(wTmpPort[PORT.PORT])
tcp_nop_ports.append(wTmpPort[PORT.P2P_PORT])
#add to serverinfo
serverinfolist.append(
{
"path":szTmpParentName,
"port":wTmpPort[PORT.PORT],
"type":v1["type"],
"chan":kh1,
"serv":genConfig["active"],
}
)
else:
print("unrecognized type %u"%v1["type"])
#end
def genList(bIsVerbose=False):
if bIsVerbose:
print("startlist:")
for i in startlist:
print("---", i, "---")
print("clearlist:")
for i in clearlist:
print("---", i, "---")
print("udp_yes_ports:")
for i in udp_yes_ports:
print("---", i, "---")
print("tcp_yes_ports:")
for i in tcp_yes_ports:
print("---", i, "---")
print("tcp_nop_ports:")
for i in tcp_nop_ports:
print("---", i, "---")
genGenM2List()
genGenIpfwList()
genGenServerInfo()
def genGen():
genMain()
genList(True)
if __name__ == "__main__":
genGen()
#

View File

@ -0,0 +1,366 @@
#### @martysama0134 start scripts ####
from platform import system as p_system
v_system = p_system()
from subprocess import check_output as sp_co, call as sp_call, CalledProcessError as sp_CalledProcessError
def fShell(szCmd, bRet=False):
try:
if bRet:
return sp_co(szCmd, shell=True)[:-1] # remove final \n
else:
return sp_call(szCmd, shell=True)
except sp_CalledProcessError:
return -1
DISABLE_TEST_MODE_IN_CH1 = False
if v_system=="FreeBSD":
v_adminPageLocalIP=fShell("ifconfig em0 | grep -Eo 'inet ([0-9]{1,3}\.){3}([0-9]{1,3})' | awk '{print $2}'", True).decode()
elif v_system=="Linux":
v_adminPageLocalIP=fShell("ifconfig eth0 | grep -Eo 'inet addr:([0-9]{1,3}\.){3}([0-9]{1,3})' | awk -F':' '{print $2}'", True).decode()
elif v_system=="Windows":
v_adminPageLocalIP="127.0.0.1"
v_adminPagePassword='58948HG83H4G8H84G' #adminpage_password
v_serverHostname='127.0.0.1' #host for sql connections
v_serverUserPass='mt2 mt2' #user&pwd for sql connections
v_serverData=f"{v_serverHostname} {v_serverUserPass}" #host, user and pwd for db sql connections
v_bindHostname='10.0.2.15' #your IP
v_proxyHostname='127.0.0.1' #your IP
v_dbHostname='127.0.0.1'#default hostname for db
v_dbPort=30000 #default port for db (the others will be automatically calculated)
v_mysqlport=3306 #default mysql port (3306 or 0)
v_logFolder='logs' #name of the all_log path
v_chanFolder='chan/' #name of the channel path
v_chanPath='../' #workaround that should be equivalent to $v_charS paths per ../
#############################
## to specify custom ports:
# 1) be sure the key matches "{ServerName}-{FolderName}-{ProcessName}"
# 2) and check if they are still commented
# 3) if you're under NAT, be sure to portforward the new ports
M2PORTS = {
# "srv1-db":(15000), #db port
# "srv1-auth1":(11000,12000), #port,p2p_port
# "srv1-auth2":(11001,12001), #port,p2p_port
# "srv1-ch1-core1":(13101,14101),
# "srv1-ch1-core2":(13102,14102),
# "srv1-ch1-core3":(13103,14103),
# "srv1-ch1-core4":(13104,14104),
# "srv1-ch2-core1":(13201,14201),
# "srv1-ch2-core2":(13202,14202),
# "srv1-ch2-core3":(13203,14203),
# "srv1-ch2-core4":(13204,14204),
# "srv1-ch3-core1":(13301,14301),
# "srv1-ch3-core2":(13302,14302),
# "srv1-ch3-core3":(13303,14303),
# "srv1-ch3-core4":(13304,14304),
# "srv1-ch4-core1":(13401,14401),
# "srv1-ch4-core2":(13402,14402),
# "srv1-ch4-core3":(13403,14403),
# "srv1-ch4-core4":(13404,14404),
# "srv1-ch99-core99":(13099,14099),
}
M2SD = {
"account": "srv1_account",
"common": "srv1_common",
"hotbackup": "srv1_hotbackup",
"log": "srv1_log",
"player": "srv1_player",
}
class M2TYPE:
SERVER, DB, AUTH, CHANFOLDER, CHANNEL, CORE = range(6)
NOCHAN = 0
class PORT:
RANDOMI = v_dbPort # a random port will start from such value
PORT, P2P_PORT, DB_PORT, BIND_PORT = range(4)
lPORT = ("PORT", "P2P_PORT", "DB_PORT", "BIND_PORT")
M2CONFIG = {
"db": {
"general": (
('SQL_ACCOUNT = "{} {} {} {}"', (v_serverHostname, M2SD["account"], v_serverUserPass, v_mysqlport)),
('SQL_COMMON = "{} {} {} {}"', (v_serverHostname, M2SD["common"], v_serverUserPass, v_mysqlport)),
('SQL_PLAYER = "{} {} {} {}"', (v_serverHostname, M2SD["player"], v_serverUserPass, v_mysqlport)),
('SQL_HOTBACKUP = "{} {} {} {}"', (v_serverHostname, M2SD["hotbackup"], v_serverUserPass, v_mysqlport)),
('SQL_LOG = "{} {} {} {}"', (v_serverHostname, M2SD["log"], v_serverUserPass, v_mysqlport)),
#
('TABLE_POSTFIX = "{}"', ""),
#
# ("BIND_PORT = {}", v_dbPort),
# ("DB_SLEEP_MSEC = 10", ()),
("CLIENT_HEART_FPS = {}", 25),
# ("HASH_PLAYER_LIFE_SEC = {}", 600),
("PLAYER_ID_START = {}", 100),
("PLAYER_DELETE_LEVEL_LIMIT = {}", 70),
# ("PLAYER_DELETE_LEVEL_LIMIT_LOWER = {}", 15),
("ITEM_ID_RANGE = {} {} ", (100000000, 200000000)),
# ("BACKUP_LIMIT_SEC = {}", 3600),
("DISABLE_HOTBACKUP = {:d}", True),
("LOCALE = {}", "latin1"),
),
"extra": (
("PROTO_FROM_DB = {:d}", True),
("MIRROR2DB = {:d}", False),
)
},
"core": {
M2TYPE.AUTH: (
("AUTH_SERVER: {}", "master"),
("PLAYER_SQL: {} {} {}", (v_serverData, M2SD["account"], v_mysqlport)),
),
M2TYPE.CORE: (
("PLAYER_SQL: {} {} {}", (v_serverData, M2SD["player"], v_mysqlport)),
),
"general": (
# ("TABLE_POSTFIX: {}", ""),
# ("ITEM_ID_RANGE: {} {}", (5000001, 10000000)),
("VIEW_RANGE: {}", 10000),
("PASSES_PER_SEC: {}", 25),
("SAVE_EVENT_SECOND_CYCLE: {}", 180),
("PING_EVENT_SECOND_CYCLE: {}", 180),
#
("BIND_IP: {}", v_bindHostname),#VPS NAT
("PROXY_IP: {}", v_proxyHostname),#VPS NAT
("DB_ADDR: {}", v_dbHostname),
("COMMON_SQL: {} {} {}", (v_serverData, M2SD["common"], v_mysqlport)),
("LOG_SQL: {} {} {}", (v_serverData, M2SD["log"], v_mysqlport)),
("TEST_SERVER: {:d}", True),#TEST ONLY
# ("PK_SERVER: {:d}", True),
("ADMINPAGE_IP1: {}", v_adminPageLocalIP),
("ADMINPAGE_PASSWORD: {}", v_adminPagePassword),
("MAX_LEVEL: {}", 120),
),
"extra": (
# ("CHECK_VERSION_SERVER: {:d}", True),
# ("CHECK_VERSION_VALUE: {}", 1215955205),
("CHANGE_ATTR_TIME_LIMIT: {:d}", False),
("EMOTION_MASK_REQUIRE: {:d}", False),
("PRISM_ITEM_REQUIRE: {:d}", False),
("SHOP_PRICE_3X_TAX: {:d}", False),
("GLOBAL_SHOUT: {:d}", True),
("ITEM_COUNT_LIMIT: {}", 250),
("STATUS_POINT_GET_LEVEL_LIMIT: {}", 120),
("STATUS_POINT_SET_MAX_VALUE: {}", 90),
("SHOUT_LIMIT_LEVEL: {}", 15),
("DB_LOG_LEVEL: {}", 1),
("EMPIRE_LANGUAGE_CHECK: {:d}", False),
# ("ITEM_DESTROY_TIME_AUTOGIVE: {}", 30),
# ("ITEM_DESTROY_TIME_DROPITEM: {}", 30),
# ("ITEM_DESTROY_TIME_DROPGOLD: {}", 30),
),
},
}
COMMONCHAN=(
{
"name": "core1",
"type": M2TYPE.CORE,
"config": M2CONFIG["core"],
"maps": "1 21 41 3 23 43 4 24 44 5 25 45 108 109 112 301 302 303 304",
},
{
"name": "core2",
"type": M2TYPE.CORE,
"config": M2CONFIG["core"],
"maps": "61 62 63 64 65 66 67 68 69 70 71 72 73 104 193 206 208 207 216 217 351",
},
)
CHAN99=(
{
"name": "core99",
"type": M2TYPE.CORE,
"config": M2CONFIG["core"],
"maps": "81 103 105 110 111 113 114 118 119 120 121 122 123 124 125 126 127 128 181 182 183 200",
},
)
M2S=(
{
"name": "srv1",
"type": M2TYPE.SERVER,
"isextra": True,
"sub": (
{
"name": "db",
"type": M2TYPE.DB,
"config": M2CONFIG["db"],
},
{
"name": "auth1",
"type": M2TYPE.AUTH,
"config": M2CONFIG["core"],
},
# {
# "name": "auth2",
# "type": M2TYPE.AUTH,
# "config": M2CONFIG["core"],
# },
{
"name": "chan",
"type": M2TYPE.CHANFOLDER,
"sub": (
{
"name": "ch1",
"type": M2TYPE.CHANNEL,
"chan": 1,
"sub": COMMONCHAN,
},
# {
# "name": "ch2",
# "type": M2TYPE.CHANNEL,
# "chan": 2,
# "sub": COMMONCHAN,
# },
# {
# "name": "ch3",
# "type": M2TYPE.CHANNEL,
# "chan": 3,
# "sub": COMMONCHAN,
# },
# {
# "name": "ch4",
# "type": M2TYPE.CHANNEL,
# "chan": 4,
# "sub": COMMONCHAN,
# },
{
"name": "ch99",
"type": M2TYPE.CHANNEL,
"chan": 99,
"sub": CHAN99,
},
)
}
)
},
)
CustIpfwList="""#!/bin/sh
IPF="ipfw -q add"
ipfw -q -f flush
#loopback
$IPF 10 allow all from any to any via lo0
$IPF 20 deny all from any to 127.0.0.0/8
$IPF 30 deny all from 127.0.0.0/8 to any
$IPF 40 deny tcp from any to any frag
# stateful
$IPF 50 check-state
$IPF 60 allow tcp from any to any established
$IPF 70 allow all from any to any out keep-state
$IPF 80 allow icmp from any to any
# open port ftp (20, 21), ssh (22), mail (25)
# http (80), https (443), dns (53), mysql (3306)
default_udp_allowed_ports='53'
default_tcp_allowed_ports='22 53 3306'
default_tcp_blocked_ports=''
# here auth PORTs for "NORM"/"..." thing
metin2_udp_allowed_ports='{udp_allowed_ports}'
# here PORTs
metin2_tcp_allowed_ports='{tcp_allowed_ports}'
# here DB_PORTs and P2P_PORTs
metin2_tcp_blocked_ports='{tcp_blocked_ports}'
# merge lists
udp_allowed_ports="$default_udp_allowed_ports $metin2_udp_allowed_ports"
tcp_allowed_ports="$default_tcp_allowed_ports $metin2_tcp_allowed_ports"
tcp_blocked_ports="$default_tcp_blocked_ports $metin2_tcp_blocked_ports"
# white ip list
white_sites=''
# block tcp/udp ports
for val in $tcp_blocked_ports; do
$IPF 2220 allow all from 127.0.0.0/8 to any $val
for whitez in $white_sites; do
$IPF 2210 allow tcp from $whitez to any $val in
$IPF 2210 allow tcp from 127.0.0.0/8 to $whitez $val out
done
$IPF 2230 deny all from any to me $val
done
# unblock tcp ports
for val in $tcp_allowed_ports; do
$IPF 2200 allow tcp from any to any $val in limit src-addr 20
$IPF 2210 allow tcp from any to any $val out
done
# unblock udp ports
for val in $udp_allowed_ports; do
$IPF 2200 allow udp from any to any $val in limit src-addr 20
$IPF 2210 allow udp from any to any $val out
done
"""
CustServerInfo="""
import app
import localeInfo
from constInfo import TextColor
app.ServerName = None
ENABLE_RANDOM_AUTH_NO_LIB = True
if ENABLE_RANDOM_AUTH_NO_LIB:
from time import time as time_time
def get_random_number(upper_limit):
_timestamp = time_time()
_timestamp = int(_timestamp*1000000)
return _timestamp % upper_limit
def get_item_from_list(_list):
choice = get_random_number(len(_list))
assert choice < len(_list), "Index should be less than length of list"
return _list[choice]
else:
from random import choice as random_choice
def get_item_from_list(_list):
return random_choice(_list)
SRV1 = {{
"name":TextColor("ServerName", "ffd500"), #GOLD
"host":"{hostname}",
{portlist}
"authlist": [ {authlist} ],
}}
STATE_NONE = TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000") #RED
STATE_DICT = {{
0: TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000"), #RED
1: TextColor(localeInfo.CHANNEL_STATUS_RECOMMENDED, "00ff00"), #GREEN
2: TextColor(localeInfo.CHANNEL_STATUS_BUSY, "ffff00"), #YELLOW
3: TextColor(localeInfo.CHANNEL_STATUS_FULL, "ff8a08") #ORANGE
}}
SERVER1_CHANNEL_DICT = {{
{channel_dict}
}}
REGION_NAME_DICT = {{
0: SRV1["name"],
}}
REGION_AUTH_SERVER_DICT = {{
0: {{
{auth_dict}
}}
}}
REGION_DICT = {{
0: {{
1: {{"name": SRV1["name"], "channel": SERVER1_CHANNEL_DICT,}},
}},
}}
MARKADDR_DICT = {{
10: {{"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "mark": "10.tga", "symbol_path": "10",}},
}}
TESTADDR = {{"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "udp_port": SRV1["ch1"],}}
"""

View File

View File

View File

View File

View File

@ -0,0 +1,410 @@
r 701 206 10 10 0 0 60s 100 1 2511
r 804 206 10 10 0 0 60s 100 1 2511
r 803 217 10 10 0 0 60s 100 1 2511
r 802 221 10 10 0 0 60s 100 1 2511
r 697 223 10 10 0 0 60s 100 1 2511
r 806 226 10 10 0 0 60s 100 1 2511
r 801 229 10 10 0 0 60s 100 1 2511
r 694 236 10 10 0 0 60s 100 1 2511
r 700 249 10 10 0 0 60s 100 1 2511
r 799 257 10 10 0 0 60s 100 1 2511
r 801 262 10 10 0 0 60s 100 1 2511
r 799 264 10 10 0 0 60s 100 1 2511
r 797 265 10 10 0 0 60s 100 1 2511
r 697 275 10 10 0 0 60s 100 1 2511
r 797 291 10 10 0 0 60s 100 1 2511
r 689 292 10 10 0 0 60s 100 1 2511
r 738 293 10 10 0 0 60s 100 1 2511
r 723 294 10 10 0 0 60s 100 1 2511
r 786 295 10 10 0 0 60s 100 1 2511
r 719 297 10 10 0 0 60s 100 1 2511
r 707 298 10 10 0 0 60s 100 1 2511
r 778 299 10 10 0 0 60s 100 1 2511
r 710 300 10 10 0 0 60s 100 1 2511
r 715 301 10 10 0 0 60s 100 1 2511
r 768 302 10 10 0 0 60s 100 1 2511
r 801 302 10 10 0 0 60s 100 1 2511
r 766 304 10 10 0 0 60s 100 1 2511
r 725 157 10 10 0 0 60s 100 1 2510
r 726 157 10 10 0 0 60s 100 1 2510
r 737 159 10 10 0 0 60s 100 1 2510
r 841 160 10 10 0 0 60s 100 1 2510
r 772 161 10 10 0 0 60s 100 1 2510
r 773 161 10 10 0 0 60s 100 1 2510
r 786 161 10 10 0 0 60s 100 1 2510
r 851 161 10 10 0 0 60s 100 1 2510
r 730 162 10 10 0 0 60s 100 1 2510
r 775 162 10 10 0 0 60s 100 1 2510
r 812 162 10 10 0 0 60s 100 1 2510
r 746 163 10 10 0 0 60s 100 1 2510
r 839 167 10 10 0 0 60s 100 1 2510
r 848 167 10 10 0 0 60s 100 1 2510
r 844 168 10 10 0 0 60s 100 1 2510
r 846 168 10 10 0 0 60s 100 1 2510
r 854 179 10 10 0 0 60s 100 1 2510
r 849 188 10 10 0 0 60s 100 1 2510
r 852 191 10 10 0 0 60s 100 1 2510
r 849 215 10 10 0 0 60s 100 1 2510
r 652 220 10 10 0 0 60s 100 1 2510
r 658 222 10 10 0 0 60s 100 1 2510
r 658 223 10 10 0 0 60s 100 1 2510
r 850 225 10 10 0 0 60s 100 1 2510
r 848 230 10 10 0 0 60s 100 1 2510
r 853 230 10 10 0 0 60s 100 1 2510
r 657 231 10 10 0 0 60s 100 1 2510
r 656 236 10 10 0 0 60s 100 1 2510
r 856 240 10 10 0 0 60s 100 1 2510
r 848 258 10 10 0 0 60s 100 1 2510
r 846 259 10 10 0 0 60s 100 1 2510
r 656 262 10 10 0 0 60s 100 1 2510
r 655 263 10 10 0 0 60s 100 1 2510
r 852 268 10 10 0 0 60s 100 1 2510
r 647 271 10 10 0 0 60s 100 1 2510
r 650 274 10 10 0 0 60s 100 1 2510
r 648 278 10 10 0 0 60s 100 1 2510
r 656 286 10 10 0 0 60s 100 1 2510
r 646 293 10 10 0 0 60s 100 1 2510
r 646 298 10 10 0 0 60s 100 1 2510
r 849 298 10 10 0 0 60s 100 1 2510
r 658 302 10 10 0 0 60s 100 1 2510
r 850 315 10 10 0 0 60s 100 1 2510
r 859 321 10 10 0 0 60s 100 1 2510
r 653 326 10 10 0 0 60s 100 1 2510
r 825 328 10 10 0 0 60s 100 1 2510
r 681 330 10 10 0 0 60s 100 1 2510
r 747 332 10 10 0 0 60s 100 1 2510
r 791 332 10 10 0 0 60s 100 1 2510
r 820 332 10 10 0 0 60s 100 1 2510
r 823 333 10 10 0 0 60s 100 1 2510
r 728 334 10 10 0 0 60s 100 1 2510
r 748 334 10 10 0 0 60s 100 1 2510
r 845 334 10 10 0 0 60s 100 1 2510
r 685 335 10 10 0 0 60s 100 1 2510
r 678 336 10 10 0 0 60s 100 1 2510
r 688 336 10 10 0 0 60s 100 1 2510
r 738 336 10 10 0 0 60s 100 1 2510
r 753 336 10 10 0 0 60s 100 1 2510
r 833 336 10 10 0 0 60s 100 1 2510
r 717 337 10 10 0 0 60s 100 1 2510
r 743 337 10 10 0 0 60s 100 1 2510
r 815 337 10 10 0 0 60s 100 1 2510
r 846 337 10 10 0 0 60s 100 1 2510
r 768 338 10 10 0 0 60s 100 1 2510
r 750 340 10 10 0 0 60s 100 1 2510
r 755 340 10 10 0 0 60s 100 1 2510
r 657 343 10 10 0 0 60s 100 1 2510
r 804 343 10 10 0 0 60s 100 1 2510
r 629 56 10 10 0 0 60s 100 1 2507
r 729 57 10 10 0 0 60s 100 1 2507
r 673 58 10 10 0 0 60s 100 1 2507
r 622 59 10 10 0 0 60s 100 1 2507
r 646 59 10 10 0 0 60s 100 1 2507
r 678 59 10 10 0 0 60s 100 1 2507
r 825 59 10 10 0 0 60s 100 1 2507
r 598 60 10 10 0 0 60s 100 1 2507
r 700 60 10 10 0 0 60s 100 1 2507
r 713 60 10 10 0 0 60s 100 1 2507
r 755 60 10 10 0 0 60s 100 1 2507
r 598 61 10 10 0 0 60s 100 1 2507
r 602 61 10 10 0 0 60s 100 1 2507
r 793 61 10 10 0 0 60s 100 1 2507
r 634 63 10 10 0 0 60s 100 1 2507
r 635 63 10 10 0 0 60s 100 1 2507
r 685 63 10 10 0 0 60s 100 1 2507
r 715 63 10 10 0 0 60s 100 1 2507
r 727 63 10 10 0 0 60s 100 1 2507
r 756 63 10 10 0 0 60s 100 1 2507
r 797 63 10 10 0 0 60s 100 1 2507
r 821 63 10 10 0 0 60s 100 1 2507
r 830 63 10 10 0 0 60s 100 1 2507
r 687 64 10 10 0 0 60s 100 1 2507
r 735 64 10 10 0 0 60s 100 1 2507
r 863 64 10 10 0 0 60s 100 1 2507
r 928 64 10 10 0 0 60s 100 1 2507
r 638 65 10 10 0 0 60s 100 1 2507
r 657 65 10 10 0 0 60s 100 1 2507
r 700 65 10 10 0 0 60s 100 1 2507
r 808 65 10 10 0 0 60s 100 1 2507
r 834 65 10 10 0 0 60s 100 1 2507
r 916 65 10 10 0 0 60s 100 1 2507
r 928 65 10 10 0 0 60s 100 1 2507
r 696 66 10 10 0 0 60s 100 1 2507
r 794 66 10 10 0 0 60s 100 1 2507
r 819 66 10 10 0 0 60s 100 1 2507
r 933 66 10 10 0 0 60s 100 1 2507
r 712 67 10 10 0 0 60s 100 1 2507
r 822 67 10 10 0 0 60s 100 1 2507
r 831 67 10 10 0 0 60s 100 1 2507
r 887 67 10 10 0 0 60s 100 1 2507
r 731 68 10 10 0 0 60s 100 1 2507
r 797 68 10 10 0 0 60s 100 1 2507
r 849 68 10 10 0 0 60s 100 1 2507
r 853 68 10 10 0 0 60s 100 1 2507
r 876 68 10 10 0 0 60s 100 1 2507
r 933 68 10 10 0 0 60s 100 1 2507
r 944 68 10 10 0 0 60s 100 1 2507
r 863 69 10 10 0 0 60s 100 1 2507
r 841 70 10 10 0 0 60s 100 1 2507
r 944 70 10 10 0 0 60s 100 1 2507
r 907 71 10 10 0 0 60s 100 1 2507
r 943 79 10 10 0 0 60s 100 1 2507
r 943 80 10 10 0 0 60s 100 1 2507
r 566 96 10 10 0 0 60s 100 1 2507
r 569 110 10 10 0 0 60s 100 1 2507
r 561 132 10 10 0 0 60s 100 1 2507
r 567 144 10 10 0 0 60s 100 1 2507
r 570 146 10 10 0 0 60s 100 1 2507
r 560 149 10 10 0 0 60s 100 1 2507
r 565 152 10 10 0 0 60s 100 1 2507
r 567 153 10 10 0 0 60s 100 1 2507
r 560 155 10 10 0 0 60s 100 1 2507
r 564 158 10 10 0 0 60s 100 1 2507
r 569 160 10 10 0 0 60s 100 1 2507
r 568 184 10 10 0 0 60s 100 1 2507
r 562 193 10 10 0 0 60s 100 1 2507
r 572 201 10 10 0 0 60s 100 1 2507
r 566 217 10 10 0 0 60s 100 1 2507
r 570 217 10 10 0 0 60s 100 1 2507
r 573 228 10 10 0 0 60s 100 1 2507
r 570 230 10 10 0 0 60s 100 1 2507
r 565 231 10 10 0 0 60s 100 1 2507
r 567 232 10 10 0 0 60s 100 1 2507
r 573 236 10 10 0 0 60s 100 1 2507
r 568 240 10 10 0 0 60s 100 1 2507
r 570 245 10 10 0 0 60s 100 1 2507
r 561 247 10 10 0 0 60s 100 1 2507
r 568 251 10 10 0 0 60s 100 1 2507
r 562 252 10 10 0 0 60s 100 1 2507
r 569 252 10 10 0 0 60s 100 1 2507
r 563 254 10 10 0 0 60s 100 1 2507
r 564 259 10 10 0 0 60s 100 1 2507
r 561 283 10 10 0 0 60s 100 1 2507
r 565 291 10 10 0 0 60s 100 1 2507
r 559 292 10 10 0 0 60s 100 1 2507
r 561 315 10 10 0 0 60s 100 1 2507
r 551 330 10 10 0 0 60s 100 1 2507
r 551 331 10 10 0 0 60s 100 1 2507
r 567 336 10 10 0 0 60s 100 1 2507
r 567 337 10 10 0 0 60s 100 1 2507
r 556 341 10 10 0 0 60s 100 1 2507
r 555 347 10 10 0 0 60s 100 1 2507
r 561 350 10 10 0 0 60s 100 1 2507
r 560 354 10 10 0 0 60s 100 1 2507
r 557 355 10 10 0 0 60s 100 1 2507
r 553 356 10 10 0 0 60s 100 1 2507
r 567 367 10 10 0 0 60s 100 1 2507
r 572 374 10 10 0 0 60s 100 1 2507
r 556 376 10 10 0 0 60s 100 1 2507
r 567 380 10 10 0 0 60s 100 1 2507
r 559 381 10 10 0 0 60s 100 1 2507
r 561 395 10 10 0 0 60s 100 1 2507
r 568 395 10 10 0 0 60s 100 1 2507
r 570 396 10 10 0 0 60s 100 1 2507
r 563 399 10 10 0 0 60s 100 1 2507
r 567 403 10 10 0 0 60s 100 1 2507
r 562 404 10 10 0 0 60s 100 1 2507
r 580 422 10 10 0 0 60s 100 1 2507
r 566 426 10 10 0 0 60s 100 1 2507
r 576 426 10 10 0 0 60s 100 1 2507
r 576 428 10 10 0 0 60s 100 1 2507
r 555 429 10 10 0 0 60s 100 1 2507
r 568 429 10 10 0 0 60s 100 1 2507
r 572 430 10 10 0 0 60s 100 1 2507
r 562 431 10 10 0 0 60s 100 1 2507
r 569 432 10 10 0 0 60s 100 1 2507
r 567 434 10 10 0 0 60s 100 1 2507
r 560 436 10 10 0 0 60s 100 1 2507
r 561 441 10 10 0 0 60s 100 1 2507
r 937 99 10 10 0 0 60s 100 1 2508
r 942 116 10 10 0 0 60s 100 1 2508
r 941 122 10 10 0 0 60s 100 1 2508
r 947 166 10 10 0 0 60s 100 1 2508
r 950 168 10 10 0 0 60s 100 1 2508
r 951 174 10 10 0 0 60s 100 1 2508
r 944 179 10 10 0 0 60s 100 1 2508
r 900 208 10 10 0 0 60s 100 1 2508
r 897 214 10 10 0 0 60s 100 1 2508
r 903 216 10 10 0 0 60s 100 1 2508
r 946 219 10 10 0 0 60s 100 1 2508
r 903 222 10 10 0 0 60s 100 1 2508
r 946 222 10 10 0 0 60s 100 1 2508
r 893 226 10 10 0 0 60s 100 1 2508
r 944 233 10 10 0 0 60s 100 1 2508
r 944 255 10 10 0 0 60s 100 1 2508
r 902 262 10 10 0 0 60s 100 1 2508
r 895 274 10 10 0 0 60s 100 1 2508
r 946 274 10 10 0 0 60s 100 1 2508
r 900 279 10 10 0 0 60s 100 1 2508
r 938 279 10 10 0 0 60s 100 1 2508
r 942 279 10 10 0 0 60s 100 1 2508
r 901 283 10 10 0 0 60s 100 1 2508
r 903 292 10 10 0 0 60s 100 1 2508
r 904 292 10 10 0 0 60s 100 1 2508
r 898 296 10 10 0 0 60s 100 1 2508
r 898 302 10 10 0 0 60s 100 1 2508
r 903 314 10 10 0 0 60s 100 1 2508
r 899 325 10 10 0 0 60s 100 1 2508
r 894 330 10 10 0 0 60s 100 1 2508
r 897 334 10 10 0 0 60s 100 1 2508
r 941 340 10 10 0 0 60s 100 1 2508
r 932 344 10 10 0 0 60s 100 1 2508
r 949 348 10 10 0 0 60s 100 1 2508
r 899 349 10 10 0 0 60s 100 1 2508
r 938 360 10 10 0 0 60s 100 1 2508
r 940 361 10 10 0 0 60s 100 1 2508
r 942 363 10 10 0 0 60s 100 1 2508
r 899 364 10 10 0 0 60s 100 1 2508
r 936 366 10 10 0 0 60s 100 1 2508
r 894 377 10 10 0 0 60s 100 1 2508
r 944 377 10 10 0 0 60s 100 1 2508
r 931 379 10 10 0 0 60s 100 1 2508
r 899 380 10 10 0 0 60s 100 1 2508
r 904 381 10 10 0 0 60s 100 1 2508
r 850 385 10 10 0 0 60s 100 1 2508
r 818 386 10 10 0 0 60s 100 1 2508
r 908 386 10 10 0 0 60s 100 1 2508
r 878 387 10 10 0 0 60s 100 1 2508
r 926 387 10 10 0 0 60s 100 1 2508
r 936 388 10 10 0 0 60s 100 1 2508
r 805 389 10 10 0 0 60s 100 1 2508
r 828 389 10 10 0 0 60s 100 1 2508
r 867 389 10 10 0 0 60s 100 1 2508
r 933 389 10 10 0 0 60s 100 1 2508
r 799 391 10 10 0 0 60s 100 1 2508
r 814 391 10 10 0 0 60s 100 1 2508
r 831 391 10 10 0 0 60s 100 1 2508
r 786 392 10 10 0 0 60s 100 1 2508
r 866 392 10 10 0 0 60s 100 1 2508
r 787 393 10 10 0 0 60s 100 1 2508
r 789 393 10 10 0 0 60s 100 1 2508
r 928 393 10 10 0 0 60s 100 1 2508
r 798 395 10 10 0 0 60s 100 1 2508
r 905 396 10 10 0 0 60s 100 1 2508
r 862 397 10 10 0 0 60s 100 1 2508
r 934 398 10 10 0 0 60s 100 1 2508
r 945 410 10 10 0 0 60s 100 1 2508
r 945 414 10 10 0 0 60s 100 1 2508
r 945 422 10 10 0 0 60s 100 1 2508
r 640 426 10 10 0 0 60s 100 1 2508
r 703 426 10 10 0 0 60s 100 1 2508
r 928 427 10 10 0 0 60s 100 1 2508
r 703 429 10 10 0 0 60s 100 1 2508
r 841 429 10 10 0 0 60s 100 1 2508
r 631 430 10 10 0 0 60s 100 1 2508
r 688 430 10 10 0 0 60s 100 1 2508
r 703 430 10 10 0 0 60s 100 1 2508
r 792 430 10 10 0 0 60s 100 1 2508
r 816 430 10 10 0 0 60s 100 1 2508
r 941 430 10 10 0 0 60s 100 1 2508
r 596 431 10 10 0 0 60s 100 1 2508
r 822 431 10 10 0 0 60s 100 1 2508
r 875 432 10 10 0 0 60s 100 1 2508
r 709 434 10 10 0 0 60s 100 1 2508
r 635 435 10 10 0 0 60s 100 1 2508
r 656 435 10 10 0 0 60s 100 1 2508
r 835 435 10 10 0 0 60s 100 1 2508
r 592 436 10 10 0 0 60s 100 1 2508
r 631 436 10 10 0 0 60s 100 1 2508
r 661 436 10 10 0 0 60s 100 1 2508
r 710 436 10 10 0 0 60s 100 1 2508
r 623 437 10 10 0 0 60s 100 1 2508
r 766 437 10 10 0 0 60s 100 1 2508
r 775 437 10 10 0 0 60s 100 1 2508
r 830 437 10 10 0 0 60s 100 1 2508
r 868 437 10 10 0 0 60s 100 1 2508
r 890 438 10 10 0 0 60s 100 1 2508
r 920 438 10 10 0 0 60s 100 1 2508
r 628 107 10 10 0 0 60s 100 1 2509
r 866 108 10 10 0 0 60s 100 1 2509
r 633 110 10 10 0 0 60s 100 1 2509
r 780 111 10 10 0 0 60s 100 1 2509
r 883 111 10 10 0 0 60s 100 1 2509
r 701 112 10 10 0 0 60s 100 1 2509
r 810 113 10 10 0 0 60s 100 1 2509
r 815 113 10 10 0 0 60s 100 1 2509
r 878 113 10 10 0 0 60s 100 1 2509
r 895 113 10 10 0 0 60s 100 1 2509
r 776 116 10 10 0 0 60s 100 1 2509
r 810 116 10 10 0 0 60s 100 1 2509
r 716 117 10 10 0 0 60s 100 1 2509
r 783 120 10 10 0 0 60s 100 1 2509
r 739 122 10 10 0 0 60s 100 1 2509
r 605 132 10 10 0 0 60s 100 1 2509
r 609 143 10 10 0 0 60s 100 1 2509
r 904 153 10 10 0 0 60s 100 1 2509
r 626 154 10 10 0 0 60s 100 1 2509
r 636 156 10 10 0 0 60s 100 1 2509
r 640 156 10 10 0 0 60s 100 1 2509
r 653 156 10 10 0 0 60s 100 1 2509
r 902 156 10 10 0 0 60s 100 1 2509
r 626 160 10 10 0 0 60s 100 1 2509
r 676 160 10 10 0 0 60s 100 1 2509
r 700 160 10 10 0 0 60s 100 1 2509
r 668 161 10 10 0 0 60s 100 1 2509
r 685 162 10 10 0 0 60s 100 1 2509
r 631 163 10 10 0 0 60s 100 1 2509
r 656 163 10 10 0 0 60s 100 1 2509
r 645 164 10 10 0 0 60s 100 1 2509
r 666 166 10 10 0 0 60s 100 1 2509
r 663 172 10 10 0 0 60s 100 1 2509
r 900 174 10 10 0 0 60s 100 1 2509
r 652 176 10 10 0 0 60s 100 1 2509
r 901 176 10 10 0 0 60s 100 1 2509
r 615 181 10 10 0 0 60s 100 1 2509
r 894 183 10 10 0 0 60s 100 1 2509
r 611 192 10 10 0 0 60s 100 1 2509
r 609 198 10 10 0 0 60s 100 1 2509
r 618 199 10 10 0 0 60s 100 1 2509
r 904 204 10 10 0 0 60s 100 1 2509
r 610 215 10 10 0 0 60s 100 1 2509
r 613 222 10 10 0 0 60s 100 1 2509
r 605 230 10 10 0 0 60s 100 1 2509
r 612 230 10 10 0 0 60s 100 1 2509
r 609 256 10 10 0 0 60s 100 1 2509
r 613 280 10 10 0 0 60s 100 1 2509
r 606 357 10 10 0 0 60s 100 1 2509
r 610 365 10 10 0 0 60s 100 1 2509
r 611 370 10 10 0 0 60s 100 1 2509
r 615 370 10 10 0 0 60s 100 1 2509
r 623 370 10 10 0 0 60s 100 1 2509
r 612 385 10 10 0 0 60s 100 1 2509
r 683 385 10 10 0 0 60s 100 1 2509
r 681 386 10 10 0 0 60s 100 1 2509
r 696 386 10 10 0 0 60s 100 1 2509
r 722 386 10 10 0 0 60s 100 1 2509
r 635 387 10 10 0 0 60s 100 1 2509
r 708 389 10 10 0 0 60s 100 1 2509
r 701 390 10 10 0 0 60s 100 1 2509
r 661 393 10 10 0 0 60s 100 1 2509
r 725 393 10 10 0 0 60s 100 1 2509
r 644 396 10 10 0 0 60s 100 1 2509
r 672 398 10 10 0 0 60s 100 1 2509
//µ¿±¼2Ãþ½Ã±¸¹®
//type cx cy sx sy z dir time percent count vnum
m 566 118 0 0 0 5 60s 100 1 30111
m 562 311 0 0 0 5 60s 100 1 30112
m 654 211 0 0 0 5 60s 100 1 30113
m 850 293 0 0 0 5 60s 100 1 30114
m 942 141 0 0 0 5 60s 100 1 30115
m 942 245 0 0 0 5 60s 100 1 30116
m 942 321 0 0 0 5 60s 100 1 30117
m 663 435 0 0 0 7 60s 100 1 30118
m 881 434 0 0 0 7 60s 100 1 30119
m 707 339 0 0 0 7 60s 100 1 30111
m 775 337 0 0 0 7 60s 100 1 30112
m 715 164 0 0 0 7 60s 100 1 30113
m 817 162 0 0 0 7 60s 100 1 30114
m 763 64 0 0 0 7 60s 100 1 30115
m 742 389 0 0 0 3 60s 100 1 30116
m 732 293 0 0 0 3 60s 100 1 30117
m 642 115 0 0 0 3 60s 100 1 30118
m 611 250 0 0 0 1 60s 100 1 30119
m 802 276 0 0 0 1 60s 100 1 30111
m 800 240 0 0 0 1 60s 100 1 30112
m 694 270 0 0 0 1 60s 100 1 30113
m 900 166 0 0 0 1 60s 100 1 30114

View File

@ -0,0 +1,315 @@
r 167 283 10 10 0 0 60s 100 1 2506
r 171 292 10 10 0 0 60s 100 1 2506
r 169 304 10 10 0 0 60s 100 1 2506
r 207 308 10 10 0 0 60s 100 1 2506
r 219 308 10 10 0 0 60s 100 1 2506
r 223 308 10 10 0 0 60s 100 1 2506
r 214 309 10 10 0 0 60s 100 1 2506
r 162 314 10 10 0 0 60s 100 1 2506
r 204 315 10 10 0 0 60s 100 1 2506
r 174 316 10 10 0 0 60s 100 1 2506
r 279 316 10 10 0 0 60s 100 1 2506
r 158 317 10 10 0 0 60s 100 1 2506
r 262 317 10 10 0 0 60s 100 1 2506
r 169 318 10 10 0 0 60s 100 1 2506
r 201 319 10 10 0 0 60s 100 1 2506
r 249 319 10 10 0 0 60s 100 1 2506
r 174 320 10 10 0 0 60s 100 1 2506
r 195 323 10 10 0 0 60s 100 1 2506
r 241 324 10 10 0 0 60s 100 1 2506
r 251 324 10 10 0 0 60s 100 1 2506
r 169 325 10 10 0 0 60s 100 1 2506
r 195 325 10 10 0 0 60s 100 1 2506
r 246 326 10 10 0 0 60s 100 1 2506
r 266 327 10 10 0 0 60s 100 1 2506
r 251 127 10 10 0 0 60s 100 1 2505
r 248 134 10 10 0 0 60s 100 1 2505
r 251 137 10 10 0 0 60s 100 1 2505
r 259 140 10 10 0 0 60s 100 1 2505
r 221 141 10 10 0 0 60s 100 1 2505
r 225 141 10 10 0 0 60s 100 1 2505
r 249 141 10 10 0 0 60s 100 1 2505
r 232 144 10 10 0 0 60s 100 1 2505
r 221 145 10 10 0 0 60s 100 1 2505
r 222 146 10 10 0 0 60s 100 1 2505
r 225 147 10 10 0 0 60s 100 1 2505
r 226 147 10 10 0 0 60s 100 1 2505
r 248 147 10 10 0 0 60s 100 1 2505
r 202 148 10 10 0 0 60s 100 1 2505
r 214 149 10 10 0 0 60s 100 1 2505
r 211 150 10 10 0 0 60s 100 1 2505
r 209 151 10 10 0 0 60s 100 1 2505
r 180 153 10 10 0 0 60s 100 1 2505
r 172 155 10 10 0 0 60s 100 1 2505
r 179 155 10 10 0 0 60s 100 1 2505
r 195 155 10 10 0 0 60s 100 1 2505
r 196 156 10 10 0 0 60s 100 1 2505
r 187 158 10 10 0 0 60s 100 1 2505
r 185 159 10 10 0 0 60s 100 1 2505
r 165 164 10 10 0 0 60s 100 1 2505
r 181 165 10 10 0 0 60s 100 1 2505
r 167 168 10 10 0 0 60s 100 1 2505
r 160 171 10 10 0 0 60s 100 1 2505
r 176 177 10 10 0 0 60s 100 1 2505
r 164 178 10 10 0 0 60s 100 1 2505
r 168 199 10 10 0 0 60s 100 1 2505
r 166 201 10 10 0 0 60s 100 1 2505
r 174 207 10 10 0 0 60s 100 1 2505
r 166 210 10 10 0 0 60s 100 1 2505
r 176 211 10 10 0 0 60s 100 1 2505
r 171 232 10 10 0 0 60s 100 1 2505
r 168 233 10 10 0 0 60s 100 1 2505
r 172 235 10 10 0 0 60s 100 1 2505
r 166 239 10 10 0 0 60s 100 1 2505
r 159 245 10 10 0 0 60s 100 1 2505
r 165 247 10 10 0 0 60s 100 1 2505
r 161 250 10 10 0 0 60s 100 1 2505
r 167 250 10 10 0 0 60s 100 1 2505
r 156 261 10 10 0 0 60s 100 1 2505
r 153 266 10 10 0 0 60s 100 1 2505
r 155 266 10 10 0 0 60s 100 1 2505
r 168 266 10 10 0 0 60s 100 1 2505
r 343 134 10 10 0 0 60s 100 1 2504
r 343 141 10 10 0 0 60s 100 1 2504
r 345 142 10 10 0 0 60s 100 1 2504
r 333 143 10 10 0 0 60s 100 1 2504
r 347 143 10 10 0 0 60s 100 1 2504
r 348 165 10 10 0 0 60s 100 1 2504
r 346 168 10 10 0 0 60s 100 1 2504
r 339 176 10 10 0 0 60s 100 1 2504
r 347 176 10 10 0 0 60s 100 1 2504
r 348 177 10 10 0 0 60s 100 1 2504
r 323 189 10 10 0 0 60s 100 1 2504
r 303 190 10 10 0 0 60s 100 1 2504
r 335 190 10 10 0 0 60s 100 1 2504
r 316 191 10 10 0 0 60s 100 1 2504
r 300 193 10 10 0 0 60s 100 1 2504
r 263 194 10 10 0 0 60s 100 1 2504
r 273 196 10 10 0 0 60s 100 1 2504
r 304 196 10 10 0 0 60s 100 1 2504
r 329 197 10 10 0 0 60s 100 1 2504
r 277 198 10 10 0 0 60s 100 1 2504
r 326 198 10 10 0 0 60s 100 1 2504
r 235 200 10 10 0 0 60s 100 1 2504
r 304 200 10 10 0 0 60s 100 1 2504
r 268 201 10 10 0 0 60s 100 1 2504
r 234 203 10 10 0 0 60s 100 1 2504
r 272 203 10 10 0 0 60s 100 1 2504
r 246 204 10 10 0 0 60s 100 1 2504
r 257 211 10 10 0 0 60s 100 1 2504
r 260 212 10 10 0 0 60s 100 1 2504
r 231 223 10 10 0 0 60s 100 1 2504
r 227 224 10 10 0 0 60s 100 1 2504
r 227 242 10 10 0 0 60s 100 1 2504
r 318 247 10 10 0 0 60s 100 1 2504
r 293 250 10 10 0 0 60s 100 1 2504
r 310 251 10 10 0 0 60s 100 1 2504
r 284 252 10 10 0 0 60s 100 1 2504
r 338 252 10 10 0 0 60s 100 1 2504
r 295 253 10 10 0 0 60s 100 1 2504
r 245 256 10 10 0 0 60s 100 1 2504
r 248 256 10 10 0 0 60s 100 1 2504
r 281 256 10 10 0 0 60s 100 1 2504
r 307 256 10 10 0 0 60s 100 1 2504
r 339 256 10 10 0 0 60s 100 1 2504
r 248 258 10 10 0 0 60s 100 1 2504
r 296 258 10 10 0 0 60s 100 1 2504
r 317 34 10 10 0 0 60s 100 1 2501
r 325 36 10 10 0 0 60s 100 1 2501
r 313 38 10 10 0 0 60s 100 1 2501
r 284 42 10 10 0 0 60s 100 1 2501
r 293 42 10 10 0 0 60s 100 1 2501
r 336 44 10 10 0 0 60s 100 1 2501
r 276 47 10 10 0 0 60s 100 1 2501
r 278 48 10 10 0 0 60s 100 1 2501
r 374 48 10 10 0 0 60s 100 1 2501
r 393 49 10 10 0 0 60s 100 1 2501
r 371 52 10 10 0 0 60s 100 1 2501
r 286 53 10 10 0 0 60s 100 1 2501
r 209 54 10 10 0 0 60s 100 1 2501
r 274 54 10 10 0 0 60s 100 1 2501
r 254 55 10 10 0 0 60s 100 1 2501
r 372 55 10 10 0 0 60s 100 1 2501
r 399 55 10 10 0 0 60s 100 1 2501
r 171 56 10 10 0 0 60s 100 1 2501
r 240 56 10 10 0 0 60s 100 1 2501
r 154 59 10 10 0 0 60s 100 1 2501
r 395 59 10 10 0 0 60s 100 1 2501
r 404 59 10 10 0 0 60s 100 1 2501
r 409 59 10 10 0 0 60s 100 1 2501
r 396 61 10 10 0 0 60s 100 1 2501
r 231 63 10 10 0 0 60s 100 1 2501
r 163 64 10 10 0 0 60s 100 1 2501
r 213 68 10 10 0 0 60s 100 1 2501
r 239 68 10 10 0 0 60s 100 1 2501
r 229 69 10 10 0 0 60s 100 1 2501
r 218 70 10 10 0 0 60s 100 1 2501
r 413 72 10 10 0 0 60s 100 1 2501
r 131 76 10 10 0 0 60s 100 1 2501
r 107 77 10 10 0 0 60s 100 1 2501
r 112 78 10 10 0 0 60s 100 1 2501
r 436 80 10 10 0 0 60s 100 1 2501
r 115 93 10 10 0 0 60s 100 1 2501
r 442 99 10 10 0 0 60s 100 1 2501
r 104 102 10 10 0 0 60s 100 1 2501
r 445 102 10 10 0 0 60s 100 1 2501
r 452 102 10 10 0 0 60s 100 1 2501
r 442 104 10 10 0 0 60s 100 1 2501
r 80 109 10 10 0 0 60s 100 1 2501
r 88 126 10 10 0 0 60s 100 1 2501
r 82 133 10 10 0 0 60s 100 1 2501
r 76 137 10 10 0 0 60s 100 1 2501
r 84 142 10 10 0 0 60s 100 1 2501
r 78 148 10 10 0 0 60s 100 1 2501
r 94 152 10 10 0 0 60s 100 1 2501
r 80 157 10 10 0 0 60s 100 1 2501
r 80 177 10 10 0 0 60s 100 1 2501
r 74 185 10 10 0 0 60s 100 1 2501
r 68 190 10 10 0 0 60s 100 1 2501
r 70 206 10 10 0 0 60s 100 1 2501
r 75 211 10 10 0 0 60s 100 1 2501
r 64 217 10 10 0 0 60s 100 1 2501
r 64 218 10 10 0 0 60s 100 1 2501
r 65 219 10 10 0 0 60s 100 1 2501
r 68 220 10 10 0 0 60s 100 1 2501
r 74 221 10 10 0 0 60s 100 1 2501
r 79 231 10 10 0 0 60s 100 1 2501
r 78 233 10 10 0 0 60s 100 1 2501
r 76 239 10 10 0 0 60s 100 1 2501
r 81 239 10 10 0 0 60s 100 1 2501
r 84 246 10 10 0 0 60s 100 1 2501
r 72 247 10 10 0 0 60s 100 1 2501
r 82 251 10 10 0 0 60s 100 1 2501
r 89 255 10 10 0 0 60s 100 1 2501
r 90 263 10 10 0 0 60s 100 1 2501
r 71 273 10 10 0 0 60s 100 1 2501
r 83 277 10 10 0 0 60s 100 1 2501
r 82 290 10 10 0 0 60s 100 1 2501
r 79 294 10 10 0 0 60s 100 1 2501
r 72 327 10 10 0 0 60s 100 1 2501
r 77 328 10 10 0 0 60s 100 1 2501
r 78 343 10 10 0 0 60s 100 1 2501
r 69 348 10 10 0 0 60s 100 1 2501
r 61 354 10 10 0 0 60s 100 1 2501
r 71 357 10 10 0 0 60s 100 1 2501
r 68 366 10 10 0 0 60s 100 1 2501
r 76 375 10 10 0 0 60s 100 1 2501
r 87 384 10 10 0 0 60s 100 1 2501
r 92 391 10 10 0 0 60s 100 1 2501
r 95 394 10 10 0 0 60s 100 1 2501
r 82 395 10 10 0 0 60s 100 1 2501
r 119 402 10 10 0 0 60s 100 1 2501
r 106 404 10 10 0 0 60s 100 1 2501
r 87 412 10 10 0 0 60s 100 1 2501
r 85 413 10 10 0 0 60s 100 1 2501
r 91 415 10 10 0 0 60s 100 1 2501
r 94 416 10 10 0 0 60s 100 1 2501
r 100 416 10 10 0 0 60s 100 1 2501
r 85 418 10 10 0 0 60s 100 1 2501
r 86 418 10 10 0 0 60s 100 1 2501
r 446 120 10 10 0 0 60s 100 1 2502
r 447 124 10 10 0 0 60s 100 1 2502
r 472 146 10 10 0 0 60s 100 1 2502
r 467 148 10 10 0 0 60s 100 1 2502
r 463 154 10 10 0 0 60s 100 1 2502
r 472 161 10 10 0 0 60s 100 1 2502
r 474 172 10 10 0 0 60s 100 1 2502
r 464 177 10 10 0 0 60s 100 1 2502
r 462 186 10 10 0 0 60s 100 1 2502
r 466 188 10 10 0 0 60s 100 1 2502
r 466 199 10 10 0 0 60s 100 1 2502
r 467 219 10 10 0 0 60s 100 1 2502
r 456 224 10 10 0 0 60s 100 1 2502
r 463 229 10 10 0 0 60s 100 1 2502
r 462 232 10 10 0 0 60s 100 1 2502
r 121 406 10 10 0 0 60s 100 1 2502
r 261 410 10 10 0 0 60s 100 1 2502
r 123 411 10 10 0 0 60s 100 1 2502
r 158 413 10 10 0 0 60s 100 1 2502
r 161 413 10 10 0 0 60s 100 1 2502
r 170 414 10 10 0 0 60s 100 1 2502
r 150 416 10 10 0 0 60s 100 1 2502
r 262 416 10 10 0 0 60s 100 1 2502
r 185 417 10 10 0 0 60s 100 1 2502
r 236 417 10 10 0 0 60s 100 1 2502
r 330 417 10 10 0 0 60s 100 1 2502
r 121 418 10 10 0 0 60s 100 1 2502
r 208 418 10 10 0 0 60s 100 1 2502
r 238 418 10 10 0 0 60s 100 1 2502
r 257 418 10 10 0 0 60s 100 1 2502
r 135 421 10 10 0 0 60s 100 1 2502
r 171 421 10 10 0 0 60s 100 1 2502
r 232 423 10 10 0 0 60s 100 1 2502
r 292 423 10 10 0 0 60s 100 1 2502
r 268 424 10 10 0 0 60s 100 1 2502
r 291 424 10 10 0 0 60s 100 1 2502
r 302 424 10 10 0 0 60s 100 1 2502
r 138 425 10 10 0 0 60s 100 1 2502
r 172 425 10 10 0 0 60s 100 1 2502
r 222 425 10 10 0 0 60s 100 1 2502
r 280 425 10 10 0 0 60s 100 1 2502
r 145 426 10 10 0 0 60s 100 1 2502
r 164 426 10 10 0 0 60s 100 1 2502
r 199 426 10 10 0 0 60s 100 1 2502
r 335 426 10 10 0 0 60s 100 1 2502
r 330 427 10 10 0 0 60s 100 1 2502
r 293 428 10 10 0 0 60s 100 1 2502
r 327 429 10 10 0 0 60s 100 1 2502
r 186 430 10 10 0 0 60s 100 1 2502
r 244 431 10 10 0 0 60s 100 1 2502
r 281 431 10 10 0 0 60s 100 1 2502
r 283 431 10 10 0 0 60s 100 1 2502
r 302 432 10 10 0 0 60s 100 1 2502
r 315 433 10 10 0 0 60s 100 1 2502
r 188 434 10 10 0 0 60s 100 1 2502
r 286 439 10 10 0 0 60s 100 1 2502
r 301 439 10 10 0 0 60s 100 1 2502
r 188 440 10 10 0 0 60s 100 1 2502
r 465 249 10 10 0 0 60s 100 1 2503
r 471 263 10 10 0 0 60s 100 1 2503
r 465 273 10 10 0 0 60s 100 1 2503
r 461 275 10 10 0 0 60s 100 1 2503
r 456 282 10 10 0 0 60s 100 1 2503
r 458 291 10 10 0 0 60s 100 1 2503
r 443 294 10 10 0 0 60s 100 1 2503
r 387 295 10 10 0 0 60s 100 1 2503
r 451 296 10 10 0 0 60s 100 1 2503
r 390 297 10 10 0 0 60s 100 1 2503
r 387 299 10 10 0 0 60s 100 1 2503
r 395 301 10 10 0 0 60s 100 1 2503
r 394 304 10 10 0 0 60s 100 1 2503
r 427 306 10 10 0 0 60s 100 1 2503
r 446 307 10 10 0 0 60s 100 1 2503
r 425 313 10 10 0 0 60s 100 1 2503
r 432 316 10 10 0 0 60s 100 1 2503
r 443 317 10 10 0 0 60s 100 1 2503
r 409 322 10 10 0 0 60s 100 1 2503
r 403 325 10 10 0 0 60s 100 1 2503
r 406 326 10 10 0 0 60s 100 1 2503
r 413 326 10 10 0 0 60s 100 1 2503
r 400 327 10 10 0 0 60s 100 1 2503
r 394 331 10 10 0 0 60s 100 1 2503
r 381 345 10 10 0 0 60s 100 1 2503
r 385 345 10 10 0 0 60s 100 1 2503
r 406 345 10 10 0 0 60s 100 1 2503
r 406 346 10 10 0 0 60s 100 1 2503
r 402 347 10 10 0 0 60s 100 1 2503
r 388 348 10 10 0 0 60s 100 1 2503
r 381 351 10 10 0 0 60s 100 1 2503
r 404 351 10 10 0 0 60s 100 1 2503
r 394 362 10 10 0 0 60s 100 1 2503
r 401 369 10 10 0 0 60s 100 1 2503
r 408 377 10 10 0 0 60s 100 1 2503
r 394 385 10 10 0 0 60s 100 1 2503
r 411 385 10 10 0 0 60s 100 1 2503
r 409 390 10 10 0 0 60s 100 1 2503
r 393 395 10 10 0 0 60s 100 1 2503
r 392 401 10 10 0 0 60s 100 1 2503
r 406 401 10 10 0 0 60s 100 1 2503
r 384 405 10 10 0 0 60s 100 1 2503
r 406 405 10 10 0 0 60s 100 1 2503
r 408 405 10 10 0 0 60s 100 1 2503
r 405 406 10 10 0 0 60s 100 1 2503
r 363 409 10 10 0 0 60s 100 1 2503
r 338 411 10 10 0 0 60s 100 1 2503
r 347 423 10 10 0 0 60s 100 1 2503

View File

@ -0,0 +1,314 @@
r 798 206 10 10 0 0 60s 100 1 2511
r 699 225 10 10 0 0 60s 100 1 2511
r 700 228 10 10 0 0 60s 100 1 2511
r 698 268 10 10 0 0 60s 100 1 2511
r 695 273 10 10 0 0 60s 100 1 2511
r 690 276 10 10 0 0 60s 100 1 2511
r 691 285 10 10 0 0 60s 100 1 2511
r 698 285 10 10 0 0 60s 100 1 2511
r 798 285 10 10 0 0 60s 100 1 2511
r 804 286 10 10 0 0 60s 100 1 2511
r 700 288 10 10 0 0 60s 100 1 2511
r 707 288 10 10 0 0 60s 100 1 2511
r 796 288 10 10 0 0 60s 100 1 2511
r 798 288 10 10 0 0 60s 100 1 2511
r 703 289 10 10 0 0 60s 100 1 2511
r 689 292 10 10 0 0 60s 100 1 2511
r 690 292 10 10 0 0 60s 100 1 2511
r 733 292 10 10 0 0 60s 100 1 2511
r 748 293 10 10 0 0 60s 100 1 2511
r 756 294 10 10 0 0 60s 100 1 2511
r 738 295 10 10 0 0 60s 100 1 2511
r 743 295 10 10 0 0 60s 100 1 2511
r 750 296 10 10 0 0 60s 100 1 2511
r 732 297 10 10 0 0 60s 100 1 2511
r 698 298 10 10 0 0 60s 100 1 2511
r 729 298 10 10 0 0 60s 100 1 2511
r 807 298 10 10 0 0 60s 100 1 2511
r 757 299 10 10 0 0 60s 100 1 2511
r 762 299 10 10 0 0 60s 100 1 2511
r 795 300 10 10 0 0 60s 100 1 2511
r 773 302 10 10 0 0 60s 100 1 2511
r 776 158 10 10 0 0 60s 100 1 2510
r 804 159 10 10 0 0 60s 100 1 2510
r 743 160 10 10 0 0 60s 100 1 2510
r 799 161 10 10 0 0 60s 100 1 2510
r 796 162 10 10 0 0 60s 100 1 2510
r 851 164 10 10 0 0 60s 100 1 2510
r 854 172 10 10 0 0 60s 100 1 2510
r 854 183 10 10 0 0 60s 100 1 2510
r 856 197 10 10 0 0 60s 100 1 2510
r 855 237 10 10 0 0 60s 100 1 2510
r 648 238 10 10 0 0 60s 100 1 2510
r 846 242 10 10 0 0 60s 100 1 2510
r 849 244 10 10 0 0 60s 100 1 2510
r 647 246 10 10 0 0 60s 100 1 2510
r 849 247 10 10 0 0 60s 100 1 2510
r 852 250 10 10 0 0 60s 100 1 2510
r 656 251 10 10 0 0 60s 100 1 2510
r 852 253 10 10 0 0 60s 100 1 2510
r 845 258 10 10 0 0 60s 100 1 2510
r 849 276 10 10 0 0 60s 100 1 2510
r 847 277 10 10 0 0 60s 100 1 2510
r 843 278 10 10 0 0 60s 100 1 2510
r 650 280 10 10 0 0 60s 100 1 2510
r 658 285 10 10 0 0 60s 100 1 2510
r 650 289 10 10 0 0 60s 100 1 2510
r 653 293 10 10 0 0 60s 100 1 2510
r 652 294 10 10 0 0 60s 100 1 2510
r 646 295 10 10 0 0 60s 100 1 2510
r 647 299 10 10 0 0 60s 100 1 2510
r 651 301 10 10 0 0 60s 100 1 2510
r 658 304 10 10 0 0 60s 100 1 2510
r 649 307 10 10 0 0 60s 100 1 2510
r 796 307 10 10 0 0 60s 100 1 2510
r 803 312 10 10 0 0 60s 100 1 2510
r 657 314 10 10 0 0 60s 100 1 2510
r 658 316 10 10 0 0 60s 100 1 2510
r 859 317 10 10 0 0 60s 100 1 2510
r 806 319 10 10 0 0 60s 100 1 2510
r 814 324 10 10 0 0 60s 100 1 2510
r 669 326 10 10 0 0 60s 100 1 2510
r 648 327 10 10 0 0 60s 100 1 2510
r 652 329 10 10 0 0 60s 100 1 2510
r 647 331 10 10 0 0 60s 100 1 2510
r 672 331 10 10 0 0 60s 100 1 2510
r 841 331 10 10 0 0 60s 100 1 2510
r 679 332 10 10 0 0 60s 100 1 2510
r 765 332 10 10 0 0 60s 100 1 2510
r 802 332 10 10 0 0 60s 100 1 2510
r 689 333 10 10 0 0 60s 100 1 2510
r 841 336 10 10 0 0 60s 100 1 2510
r 670 337 10 10 0 0 60s 100 1 2510
r 768 337 10 10 0 0 60s 100 1 2510
r 689 338 10 10 0 0 60s 100 1 2510
r 659 345 10 10 0 0 60s 100 1 2510
r 655 57 10 10 0 0 60s 100 1 2507
r 746 59 10 10 0 0 60s 100 1 2507
r 619 60 10 10 0 0 60s 100 1 2507
r 720 60 10 10 0 0 60s 100 1 2507
r 753 61 10 10 0 0 60s 100 1 2507
r 644 63 10 10 0 0 60s 100 1 2507
r 714 64 10 10 0 0 60s 100 1 2507
r 624 65 10 10 0 0 60s 100 1 2507
r 637 65 10 10 0 0 60s 100 1 2507
r 815 65 10 10 0 0 60s 100 1 2507
r 930 65 10 10 0 0 60s 100 1 2507
r 937 65 10 10 0 0 60s 100 1 2507
r 604 66 10 10 0 0 60s 100 1 2507
r 713 66 10 10 0 0 60s 100 1 2507
r 631 67 10 10 0 0 60s 100 1 2507
r 857 67 10 10 0 0 60s 100 1 2507
r 810 68 10 10 0 0 60s 100 1 2507
r 823 68 10 10 0 0 60s 100 1 2507
r 867 68 10 10 0 0 60s 100 1 2507
r 924 68 10 10 0 0 60s 100 1 2507
r 682 69 10 10 0 0 60s 100 1 2507
r 859 69 10 10 0 0 60s 100 1 2507
r 886 69 10 10 0 0 60s 100 1 2507
r 852 70 10 10 0 0 60s 100 1 2507
r 871 70 10 10 0 0 60s 100 1 2507
r 945 70 10 10 0 0 60s 100 1 2507
r 876 71 10 10 0 0 60s 100 1 2507
r 918 71 10 10 0 0 60s 100 1 2507
r 945 72 10 10 0 0 60s 100 1 2507
r 944 76 10 10 0 0 60s 100 1 2507
r 941 77 10 10 0 0 60s 100 1 2507
r 945 78 10 10 0 0 60s 100 1 2507
r 941 79 10 10 0 0 60s 100 1 2507
r 562 98 10 10 0 0 60s 100 1 2507
r 563 103 10 10 0 0 60s 100 1 2507
r 568 106 10 10 0 0 60s 100 1 2507
r 571 151 10 10 0 0 60s 100 1 2507
r 559 152 10 10 0 0 60s 100 1 2507
r 560 154 10 10 0 0 60s 100 1 2507
r 564 161 10 10 0 0 60s 100 1 2507
r 563 165 10 10 0 0 60s 100 1 2507
r 569 188 10 10 0 0 60s 100 1 2507
r 564 192 10 10 0 0 60s 100 1 2507
r 566 205 10 10 0 0 60s 100 1 2507
r 564 208 10 10 0 0 60s 100 1 2507
r 559 209 10 10 0 0 60s 100 1 2507
r 565 215 10 10 0 0 60s 100 1 2507
r 563 216 10 10 0 0 60s 100 1 2507
r 572 238 10 10 0 0 60s 100 1 2507
r 562 248 10 10 0 0 60s 100 1 2507
r 566 251 10 10 0 0 60s 100 1 2507
r 561 255 10 10 0 0 60s 100 1 2507
r 563 265 10 10 0 0 60s 100 1 2507
r 568 265 10 10 0 0 60s 100 1 2507
r 564 266 10 10 0 0 60s 100 1 2507
r 569 266 10 10 0 0 60s 100 1 2507
r 558 272 10 10 0 0 60s 100 1 2507
r 559 274 10 10 0 0 60s 100 1 2507
r 563 295 10 10 0 0 60s 100 1 2507
r 566 301 10 10 0 0 60s 100 1 2507
r 563 302 10 10 0 0 60s 100 1 2507
r 567 302 10 10 0 0 60s 100 1 2507
r 565 313 10 10 0 0 60s 100 1 2507
r 555 326 10 10 0 0 60s 100 1 2507
r 550 332 10 10 0 0 60s 100 1 2507
r 556 339 10 10 0 0 60s 100 1 2507
r 565 340 10 10 0 0 60s 100 1 2507
r 548 346 10 10 0 0 60s 100 1 2507
r 559 348 10 10 0 0 60s 100 1 2507
r 554 354 10 10 0 0 60s 100 1 2507
r 560 366 10 10 0 0 60s 100 1 2507
r 572 371 10 10 0 0 60s 100 1 2507
r 560 374 10 10 0 0 60s 100 1 2507
r 558 380 10 10 0 0 60s 100 1 2507
r 562 381 10 10 0 0 60s 100 1 2507
r 561 393 10 10 0 0 60s 100 1 2507
r 569 393 10 10 0 0 60s 100 1 2507
r 568 395 10 10 0 0 60s 100 1 2507
r 568 402 10 10 0 0 60s 100 1 2507
r 564 404 10 10 0 0 60s 100 1 2507
r 558 405 10 10 0 0 60s 100 1 2507
r 563 406 10 10 0 0 60s 100 1 2507
r 570 418 10 10 0 0 60s 100 1 2507
r 582 427 10 10 0 0 60s 100 1 2507
r 562 429 10 10 0 0 60s 100 1 2507
r 578 430 10 10 0 0 60s 100 1 2507
r 563 431 10 10 0 0 60s 100 1 2507
r 580 431 10 10 0 0 60s 100 1 2507
r 563 434 10 10 0 0 60s 100 1 2507
r 581 437 10 10 0 0 60s 100 1 2507
r 561 440 10 10 0 0 60s 100 1 2507
r 939 95 10 10 0 0 60s 100 1 2508
r 940 107 10 10 0 0 60s 100 1 2508
r 940 205 10 10 0 0 60s 100 1 2508
r 944 205 10 10 0 0 60s 100 1 2508
r 938 207 10 10 0 0 60s 100 1 2508
r 901 212 10 10 0 0 60s 100 1 2508
r 899 221 10 10 0 0 60s 100 1 2508
r 897 237 10 10 0 0 60s 100 1 2508
r 899 246 10 10 0 0 60s 100 1 2508
r 943 277 10 10 0 0 60s 100 1 2508
r 945 284 10 10 0 0 60s 100 1 2508
r 938 286 10 10 0 0 60s 100 1 2508
r 940 292 10 10 0 0 60s 100 1 2508
r 944 301 10 10 0 0 60s 100 1 2508
r 941 313 10 10 0 0 60s 100 1 2508
r 899 315 10 10 0 0 60s 100 1 2508
r 897 320 10 10 0 0 60s 100 1 2508
r 897 326 10 10 0 0 60s 100 1 2508
r 901 332 10 10 0 0 60s 100 1 2508
r 898 335 10 10 0 0 60s 100 1 2508
r 937 345 10 10 0 0 60s 100 1 2508
r 895 349 10 10 0 0 60s 100 1 2508
r 936 351 10 10 0 0 60s 100 1 2508
r 894 357 10 10 0 0 60s 100 1 2508
r 946 358 10 10 0 0 60s 100 1 2508
r 945 365 10 10 0 0 60s 100 1 2508
r 897 373 10 10 0 0 60s 100 1 2508
r 898 375 10 10 0 0 60s 100 1 2508
r 774 386 10 10 0 0 60s 100 1 2508
r 901 386 10 10 0 0 60s 100 1 2508
r 902 386 10 10 0 0 60s 100 1 2508
r 788 387 10 10 0 0 60s 100 1 2508
r 915 391 10 10 0 0 60s 100 1 2508
r 774 393 10 10 0 0 60s 100 1 2508
r 848 393 10 10 0 0 60s 100 1 2508
r 931 393 10 10 0 0 60s 100 1 2508
r 831 394 10 10 0 0 60s 100 1 2508
r 846 394 10 10 0 0 60s 100 1 2508
r 830 396 10 10 0 0 60s 100 1 2508
r 937 397 10 10 0 0 60s 100 1 2508
r 942 418 10 10 0 0 60s 100 1 2508
r 705 427 10 10 0 0 60s 100 1 2508
r 939 429 10 10 0 0 60s 100 1 2508
r 821 430 10 10 0 0 60s 100 1 2508
r 809 431 10 10 0 0 60s 100 1 2508
r 586 432 10 10 0 0 60s 100 1 2508
r 659 432 10 10 0 0 60s 100 1 2508
r 701 432 10 10 0 0 60s 100 1 2508
r 706 433 10 10 0 0 60s 100 1 2508
r 759 433 10 10 0 0 60s 100 1 2508
r 764 433 10 10 0 0 60s 100 1 2508
r 816 434 10 10 0 0 60s 100 1 2508
r 696 435 10 10 0 0 60s 100 1 2508
r 845 436 10 10 0 0 60s 100 1 2508
r 937 436 10 10 0 0 60s 100 1 2508
r 916 437 10 10 0 0 60s 100 1 2508
r 735 438 10 10 0 0 60s 100 1 2508
r 736 438 10 10 0 0 60s 100 1 2508
r 806 439 10 10 0 0 60s 100 1 2508
r 846 439 10 10 0 0 60s 100 1 2508
r 800 441 10 10 0 0 60s 100 1 2508
r 794 443 10 10 0 0 60s 100 1 2508
r 620 106 10 10 0 0 60s 100 1 2509
r 892 109 10 10 0 0 60s 100 1 2509
r 849 111 10 10 0 0 60s 100 1 2509
r 897 113 10 10 0 0 60s 100 1 2509
r 697 114 10 10 0 0 60s 100 1 2509
r 701 114 10 10 0 0 60s 100 1 2509
r 766 114 10 10 0 0 60s 100 1 2509
r 710 115 10 10 0 0 60s 100 1 2509
r 848 115 10 10 0 0 60s 100 1 2509
r 613 116 10 10 0 0 60s 100 1 2509
r 675 116 10 10 0 0 60s 100 1 2509
r 685 116 10 10 0 0 60s 100 1 2509
r 725 116 10 10 0 0 60s 100 1 2509
r 742 116 10 10 0 0 60s 100 1 2509
r 764 116 10 10 0 0 60s 100 1 2509
r 816 116 10 10 0 0 60s 100 1 2509
r 756 118 10 10 0 0 60s 100 1 2509
r 774 118 10 10 0 0 60s 100 1 2509
r 858 118 10 10 0 0 60s 100 1 2509
r 696 119 10 10 0 0 60s 100 1 2509
r 798 119 10 10 0 0 60s 100 1 2509
r 884 122 10 10 0 0 60s 100 1 2509
r 611 126 10 10 0 0 60s 100 1 2509
r 611 131 10 10 0 0 60s 100 1 2509
r 898 135 10 10 0 0 60s 100 1 2509
r 610 137 10 10 0 0 60s 100 1 2509
r 903 137 10 10 0 0 60s 100 1 2509
r 901 144 10 10 0 0 60s 100 1 2509
r 902 145 10 10 0 0 60s 100 1 2509
r 678 152 10 10 0 0 60s 100 1 2509
r 643 157 10 10 0 0 60s 100 1 2509
r 896 157 10 10 0 0 60s 100 1 2509
r 680 159 10 10 0 0 60s 100 1 2509
r 640 164 10 10 0 0 60s 100 1 2509
r 655 175 10 10 0 0 60s 100 1 2509
r 608 182 10 10 0 0 60s 100 1 2509
r 661 183 10 10 0 0 60s 100 1 2509
r 903 184 10 10 0 0 60s 100 1 2509
r 606 185 10 10 0 0 60s 100 1 2509
r 613 185 10 10 0 0 60s 100 1 2509
r 608 187 10 10 0 0 60s 100 1 2509
r 655 188 10 10 0 0 60s 100 1 2509
r 617 189 10 10 0 0 60s 100 1 2509
r 904 189 10 10 0 0 60s 100 1 2509
r 904 191 10 10 0 0 60s 100 1 2509
r 658 198 10 10 0 0 60s 100 1 2509
r 894 201 10 10 0 0 60s 100 1 2509
r 614 209 10 10 0 0 60s 100 1 2509
r 607 219 10 10 0 0 60s 100 1 2509
r 607 263 10 10 0 0 60s 100 1 2509
r 610 280 10 10 0 0 60s 100 1 2509
r 618 287 10 10 0 0 60s 100 1 2509
r 613 291 10 10 0 0 60s 100 1 2509
r 607 292 10 10 0 0 60s 100 1 2509
r 612 319 10 10 0 0 60s 100 1 2509
r 610 322 10 10 0 0 60s 100 1 2509
r 615 332 10 10 0 0 60s 100 1 2509
r 614 337 10 10 0 0 60s 100 1 2509
r 618 369 10 10 0 0 60s 100 1 2509
r 614 375 10 10 0 0 60s 100 1 2509
r 620 378 10 10 0 0 60s 100 1 2509
r 631 382 10 10 0 0 60s 100 1 2509
r 682 386 10 10 0 0 60s 100 1 2509
r 720 387 10 10 0 0 60s 100 1 2509
r 664 388 10 10 0 0 60s 100 1 2509
r 712 388 10 10 0 0 60s 100 1 2509
r 696 389 10 10 0 0 60s 100 1 2509
r 653 390 10 10 0 0 60s 100 1 2509
r 666 393 10 10 0 0 60s 100 1 2509
r 709 393 10 10 0 0 60s 100 1 2509
r 631 395 10 10 0 0 60s 100 1 2509
r 654 396 10 10 0 0 60s 100 1 2509
r 664 396 10 10 0 0 60s 100 1 2509
r 643 397 10 10 0 0 60s 100 1 2509
r 656 397 10 10 0 0 60s 100 1 2509

View File

@ -0,0 +1,91 @@
r 1255 222 10 10 0 0 60s 100 1 2512
r 1244 236 10 10 0 0 60s 100 1 2512
r 1245 241 10 10 0 0 60s 100 1 2512
r 1222 244 10 10 0 0 60s 100 1 2512
r 1223 246 10 10 0 0 60s 100 1 2512
r 1227 246 10 10 0 0 60s 100 1 2512
r 1229 246 10 10 0 0 60s 100 1 2512
r 1257 246 10 10 0 0 60s 100 1 2512
r 1273 252 10 10 0 0 60s 100 1 2512
r 1253 260 10 10 0 0 60s 100 1 2512
r 1257 141 10 10 0 0 60s 100 1 2513
r 1263 146 10 10 0 0 60s 100 1 2513
r 1244 148 10 10 0 0 60s 100 1 2513
r 1238 159 10 10 0 0 60s 100 1 2513
r 1254 163 10 10 0 0 60s 100 1 2513
r 1244 166 10 10 0 0 60s 100 1 2513
r 1248 168 10 10 0 0 60s 100 1 2513
r 1245 171 10 10 0 0 60s 100 1 2513
r 1246 190 10 10 0 0 60s 100 1 2513
r 1139 231 10 10 0 0 60s 100 1 2513
r 1168 237 10 10 0 0 60s 100 1 2513
r 1160 242 10 10 0 0 60s 100 1 2513
r 1149 243 10 10 0 0 60s 100 1 2513
r 1146 246 10 10 0 0 60s 100 1 2513
r 1191 247 10 10 0 0 60s 100 1 2513
r 1200 247 10 10 0 0 60s 100 1 2513
r 1168 258 10 10 0 0 60s 100 1 2513
r 1136 265 10 10 0 0 60s 100 1 2513
r 1158 271 10 10 0 0 60s 100 1 2513
r 1245 336 10 10 0 0 60s 100 1 2513
r 1271 342 10 10 0 0 60s 100 1 2513
r 1274 357 10 10 0 0 60s 100 1 2513
r 1244 361 10 10 0 0 60s 100 1 2513
r 1257 361 10 10 0 0 60s 100 1 2513
r 1252 364 10 10 0 0 60s 100 1 2513
r 1247 365 10 10 0 0 60s 100 1 2513
r 1247 375 10 10 0 0 60s 100 1 2513
r 1161 133 10 10 0 0 60s 100 1 2514
r 1334 133 10 10 0 0 60s 100 1 2514
r 1334 134 10 10 0 0 60s 100 1 2514
r 1342 135 10 10 0 0 60s 100 1 2514
r 1338 136 10 10 0 0 60s 100 1 2514
r 1349 140 10 10 0 0 60s 100 1 2514
r 1354 141 10 10 0 0 60s 100 1 2514
r 1155 147 10 10 0 0 60s 100 1 2514
r 1368 150 10 10 0 0 60s 100 1 2514
r 1142 154 10 10 0 0 60s 100 1 2514
r 1367 154 10 10 0 0 60s 100 1 2514
r 1138 157 10 10 0 0 60s 100 1 2514
r 1164 157 10 10 0 0 60s 100 1 2514
r 1136 165 10 10 0 0 60s 100 1 2514
r 1138 166 10 10 0 0 60s 100 1 2514
r 1141 167 10 10 0 0 60s 100 1 2514
r 1144 167 10 10 0 0 60s 100 1 2514
r 1345 168 10 10 0 0 60s 100 1 2514
r 1352 171 10 10 0 0 60s 100 1 2514
r 1154 181 10 10 0 0 60s 100 1 2514
r 1145 197 10 10 0 0 60s 100 1 2514
r 1149 198 10 10 0 0 60s 100 1 2514
r 1147 200 10 10 0 0 60s 100 1 2514
r 1149 304 10 10 0 0 60s 100 1 2514
r 1151 307 10 10 0 0 60s 100 1 2514
r 1153 308 10 10 0 0 60s 100 1 2514
r 1161 329 10 10 0 0 60s 100 1 2514
r 1374 329 10 10 0 0 60s 100 1 2514
r 1359 331 10 10 0 0 60s 100 1 2514
r 1136 333 10 10 0 0 60s 100 1 2514
r 1359 333 10 10 0 0 60s 100 1 2514
r 1128 334 10 10 0 0 60s 100 1 2514
r 1342 334 10 10 0 0 60s 100 1 2514
r 1150 337 10 10 0 0 60s 100 1 2514
r 1160 339 10 10 0 0 60s 100 1 2514
r 1367 339 10 10 0 0 60s 100 1 2514
r 1362 342 10 10 0 0 60s 100 1 2514
r 1137 343 10 10 0 0 60s 100 1 2514
r 1356 343 10 10 0 0 60s 100 1 2514
r 1338 344 10 10 0 0 60s 100 1 2514
r 1145 348 10 10 0 0 60s 100 1 2514
r 1297 351 10 10 0 0 60s 100 1 2514
r 1134 357 10 10 0 0 60s 100 1 2514
r 1161 357 10 10 0 0 60s 100 1 2514
r 1173 357 10 10 0 0 60s 100 1 2514
r 1147 358 10 10 0 0 60s 100 1 2514
r 1345 358 10 10 0 0 60s 100 1 2514
r 1150 359 10 10 0 0 60s 100 1 2514
r 1170 359 10 10 0 0 60s 100 1 2514
r 1331 364 10 10 0 0 60s 100 1 2514
r 1340 367 10 10 0 0 60s 100 1 2514
r 1329 368 10 10 0 0 60s 100 1 2514
r 1166 375 10 10 0 0 60s 100 1 2514
r 1169 376 10 10 0 0 60s 100 1 2514

View File

@ -0,0 +1,154 @@
r 349 555 10 10 0 0 60s 100 1 2515
r 275 561 10 10 0 0 60s 100 1 2515
r 208 563 10 10 0 0 60s 100 1 2515
r 204 564 10 10 0 0 60s 100 1 2515
r 346 564 10 10 0 0 60s 100 1 2515
r 235 566 10 10 0 0 60s 100 1 2515
r 281 566 10 10 0 0 60s 100 1 2515
r 229 568 10 10 0 0 60s 100 1 2515
r 232 568 10 10 0 0 60s 100 1 2515
r 287 570 10 10 0 0 60s 100 1 2515
r 345 573 10 10 0 0 60s 100 1 2515
r 69 579 10 10 0 0 60s 100 1 2515
r 71 581 10 10 0 0 60s 100 1 2515
r 345 588 10 10 0 0 60s 100 1 2515
r 342 590 10 10 0 0 60s 100 1 2515
r 338 591 10 10 0 0 60s 100 1 2515
r 341 593 10 10 0 0 60s 100 1 2515
r 407 606 10 10 0 0 60s 100 1 2515
r 69 607 10 10 0 0 60s 100 1 2515
r 89 625 10 10 0 0 60s 100 1 2515
r 124 625 10 10 0 0 60s 100 1 2515
r 126 626 10 10 0 0 60s 100 1 2515
r 74 628 10 10 0 0 60s 100 1 2515
r 349 631 10 10 0 0 60s 100 1 2515
r 407 632 10 10 0 0 60s 100 1 2515
r 403 634 10 10 0 0 60s 100 1 2515
r 238 642 10 10 0 0 60s 100 1 2515
r 249 643 10 10 0 0 60s 100 1 2515
r 408 644 10 10 0 0 60s 100 1 2515
r 246 646 10 10 0 0 60s 100 1 2515
r 343 646 10 10 0 0 60s 100 1 2515
r 70 654 10 10 0 0 60s 100 1 2515
r 73 655 10 10 0 0 60s 100 1 2515
r 133 655 10 10 0 0 60s 100 1 2515
r 72 658 10 10 0 0 60s 100 1 2515
r 348 660 10 10 0 0 60s 100 1 2515
r 73 661 10 10 0 0 60s 100 1 2515
r 134 661 10 10 0 0 60s 100 1 2515
r 410 662 10 10 0 0 60s 100 1 2515
r 188 666 10 10 0 0 60s 100 1 2515
r 390 669 10 10 0 0 60s 100 1 2515
r 224 670 10 10 0 0 60s 100 1 2515
r 366 670 10 10 0 0 60s 100 1 2515
r 194 671 10 10 0 0 60s 100 1 2515
r 236 671 10 10 0 0 60s 100 1 2515
r 370 671 10 10 0 0 60s 100 1 2515
r 225 674 10 10 0 0 60s 100 1 2515
r 404 674 10 10 0 0 60s 100 1 2515
r 230 676 10 10 0 0 60s 100 1 2515
r 404 676 10 10 0 0 60s 100 1 2515
r 377 677 10 10 0 0 60s 100 1 2515
r 391 680 10 10 0 0 60s 100 1 2515
r 388 712 10 10 0 0 60s 100 1 2515
r 386 713 10 10 0 0 60s 100 1 2515
r 417 713 10 10 0 0 60s 100 1 2515
r 379 714 10 10 0 0 60s 100 1 2515
r 388 714 10 10 0 0 60s 100 1 2515
r 384 715 10 10 0 0 60s 100 1 2515
r 84 716 10 10 0 0 60s 100 1 2515
r 114 718 10 10 0 0 60s 100 1 2515
r 353 720 10 10 0 0 60s 100 1 2515
r 189 728 10 10 0 0 60s 100 1 2515
r 272 736 10 10 0 0 60s 100 1 2515
r 413 737 10 10 0 0 60s 100 1 2515
r 62 746 10 10 0 0 60s 100 1 2515
r 143 751 10 10 0 0 60s 100 1 2515
r 480 752 10 10 0 0 60s 100 1 2515
r 499 754 10 10 0 0 60s 100 1 2515
r 476 755 10 10 0 0 60s 100 1 2515
r 189 760 10 10 0 0 60s 100 1 2515
r 407 761 10 10 0 0 60s 100 1 2515
r 134 763 10 10 0 0 60s 100 1 2515
r 475 765 10 10 0 0 60s 100 1 2515
r 275 767 10 10 0 0 60s 100 1 2515
r 151 768 10 10 0 0 60s 100 1 2515
r 499 772 10 10 0 0 60s 100 1 2515
r 394 773 10 10 0 0 60s 100 1 2515
r 287 775 10 10 0 0 60s 100 1 2515
r 402 775 10 10 0 0 60s 100 1 2515
r 317 776 10 10 0 0 60s 100 1 2515
r 516 776 10 10 0 0 60s 100 1 2515
r 528 777 10 10 0 0 60s 100 1 2515
r 301 778 10 10 0 0 60s 100 1 2515
r 316 778 10 10 0 0 60s 100 1 2515
r 525 779 10 10 0 0 60s 100 1 2515
r 140 780 10 10 0 0 60s 100 1 2515
r 376 780 10 10 0 0 60s 100 1 2515
r 522 784 10 10 0 0 60s 100 1 2515
r 499 785 10 10 0 0 60s 100 1 2515
r 533 785 10 10 0 0 60s 100 1 2515
r 492 787 10 10 0 0 60s 100 1 2515
r 501 787 10 10 0 0 60s 100 1 2515
r 467 789 10 10 0 0 60s 100 1 2515
r 498 790 10 10 0 0 60s 100 1 2515
r 142 792 10 10 0 0 60s 100 1 2515
r 67 795 10 10 0 0 60s 100 1 2515
r 408 795 10 10 0 0 60s 100 1 2515
r 68 797 10 10 0 0 60s 100 1 2515
r 274 797 10 10 0 0 60s 100 1 2515
r 483 798 10 10 0 0 60s 100 1 2515
r 67 799 10 10 0 0 60s 100 1 2515
r 496 799 10 10 0 0 60s 100 1 2515
r 276 801 10 10 0 0 60s 100 1 2515
r 509 803 10 10 0 0 60s 100 1 2515
r 534 805 10 10 0 0 60s 100 1 2515
r 500 806 10 10 0 0 60s 100 1 2515
r 411 807 10 10 0 0 60s 100 1 2515
r 519 810 10 10 0 0 60s 100 1 2515
r 274 814 10 10 0 0 60s 100 1 2515
r 271 824 10 10 0 0 60s 100 1 2515
r 361 833 10 10 0 0 60s 100 1 2515
r 365 833 10 10 0 0 60s 100 1 2515
r 381 838 10 10 0 0 60s 100 1 2515
r 404 839 10 10 0 0 60s 100 1 2515
r 367 840 10 10 0 0 60s 100 1 2515
r 409 840 10 10 0 0 60s 100 1 2515
r 360 842 10 10 0 0 60s 100 1 2515
r 368 842 10 10 0 0 60s 100 1 2515
r 374 843 10 10 0 0 60s 100 1 2515
r 100 861 10 10 0 0 60s 100 1 2515
r 73 864 10 10 0 0 60s 100 1 2515
r 125 866 10 10 0 0 60s 100 1 2515
r 307 878 10 10 0 0 60s 100 1 2515
r 244 880 10 10 0 0 60s 100 1 2515
r 236 882 10 10 0 0 60s 100 1 2515
r 240 882 10 10 0 0 60s 100 1 2515
r 405 882 10 10 0 0 60s 100 1 2515
r 311 887 10 10 0 0 60s 100 1 2515
r 315 893 10 10 0 0 60s 100 1 2515
r 319 894 10 10 0 0 60s 100 1 2515
r 319 895 10 10 0 0 60s 100 1 2515
r 244 899 10 10 0 0 60s 100 1 2515
r 192 900 10 10 0 0 60s 100 1 2515
r 403 900 10 10 0 0 60s 100 1 2515
r 94 903 10 10 0 0 60s 100 1 2515
r 249 907 10 10 0 0 60s 100 1 2515
r 402 907 10 10 0 0 60s 100 1 2515
r 244 908 10 10 0 0 60s 100 1 2515
r 96 910 10 10 0 0 60s 100 1 2515
r 192 912 10 10 0 0 60s 100 1 2515
r 99 922 10 10 0 0 60s 100 1 2515
r 407 924 10 10 0 0 60s 100 1 2515
r 242 927 10 10 0 0 60s 100 1 2515
r 316 927 10 10 0 0 60s 100 1 2515
r 88 928 10 10 0 0 60s 100 1 2515
r 409 930 10 10 0 0 60s 100 1 2515
r 248 934 10 10 0 0 60s 100 1 2515
r 232 936 10 10 0 0 60s 100 1 2515
r 367 937 10 10 0 0 60s 100 1 2515
r 426 938 10 10 0 0 60s 100 1 2515
r 198 941 10 10 0 0 60s 100 1 2515
r 330 941 10 10 0 0 60s 100 1 2515
r 356 942 10 10 0 0 60s 100 1 2515
r 234 944 10 10 0 0 60s 100 1 2515

View File

@ -0,0 +1,151 @@
r 842 568 10 10 0 0 60s 100 1 2520
r 858 569 10 10 0 0 60s 100 1 2520
r 833 579 10 10 0 0 60s 100 1 2520
r 997 631 10 10 0 0 60s 100 1 2520
r 1015 636 10 10 0 0 60s 100 1 2520
r 705 642 10 10 0 0 60s 100 1 2520
r 1026 644 10 10 0 0 60s 100 1 2520
r 1009 651 10 10 0 0 60s 100 1 2520
r 1028 652 10 10 0 0 60s 100 1 2520
r 694 653 10 10 0 0 60s 100 1 2520
r 1024 653 10 10 0 0 60s 100 1 2520
r 692 655 10 10 0 0 60s 100 1 2520
r 897 733 10 10 0 0 60s 100 1 2520
r 800 740 10 10 0 0 60s 100 1 2520
r 812 770 10 10 0 0 60s 100 1 2520
r 819 771 10 10 0 0 60s 100 1 2520
r 838 789 10 10 0 0 60s 100 1 2520
r 679 810 10 10 0 0 60s 100 1 2520
r 674 812 10 10 0 0 60s 100 1 2520
r 678 816 10 10 0 0 60s 100 1 2520
r 677 820 10 10 0 0 60s 100 1 2520
r 681 824 10 10 0 0 60s 100 1 2520
r 673 829 10 10 0 0 60s 100 1 2520
r 1011 841 10 10 0 0 60s 100 1 2520
r 830 585 10 10 0 0 60s 100 1 2519
r 841 587 10 10 0 0 60s 100 1 2519
r 856 587 10 10 0 0 60s 100 1 2519
r 835 597 10 10 0 0 60s 100 1 2519
r 861 598 10 10 0 0 60s 100 1 2519
r 831 599 10 10 0 0 60s 100 1 2519
r 849 602 10 10 0 0 60s 100 1 2519
r 854 602 10 10 0 0 60s 100 1 2519
r 873 602 10 10 0 0 60s 100 1 2519
r 867 603 10 10 0 0 60s 100 1 2519
r 878 603 10 10 0 0 60s 100 1 2519
r 868 604 10 10 0 0 60s 100 1 2519
r 723 639 10 10 0 0 60s 100 1 2519
r 706 645 10 10 0 0 60s 100 1 2519
r 706 646 10 10 0 0 60s 100 1 2519
r 731 648 10 10 0 0 60s 100 1 2519
r 981 652 10 10 0 0 60s 100 1 2519
r 698 661 10 10 0 0 60s 100 1 2519
r 987 669 10 10 0 0 60s 100 1 2519
r 1011 673 10 10 0 0 60s 100 1 2519
r 853 676 10 10 0 0 60s 100 1 2519
r 852 682 10 10 0 0 60s 100 1 2519
r 996 690 10 10 0 0 60s 100 1 2519
r 1005 692 10 10 0 0 60s 100 1 2519
r 815 702 10 10 0 0 60s 100 1 2519
r 878 703 10 10 0 0 60s 100 1 2519
r 883 709 10 10 0 0 60s 100 1 2519
r 815 712 10 10 0 0 60s 100 1 2519
r 893 715 10 10 0 0 60s 100 1 2519
r 699 785 10 10 0 0 60s 100 1 2519
r 699 789 10 10 0 0 60s 100 1 2519
r 696 792 10 10 0 0 60s 100 1 2519
r 694 811 10 10 0 0 60s 100 1 2519
r 998 815 10 10 0 0 60s 100 1 2519
r 697 823 10 10 0 0 60s 100 1 2519
r 712 829 10 10 0 0 60s 100 1 2519
r 700 833 10 10 0 0 60s 100 1 2519
r 977 843 10 10 0 0 60s 100 1 2519
r 1003 843 10 10 0 0 60s 100 1 2519
r 984 844 10 10 0 0 60s 100 1 2519
r 997 846 10 10 0 0 60s 100 1 2519
r 996 849 10 10 0 0 60s 100 1 2519
r 988 850 10 10 0 0 60s 100 1 2519
r 971 855 10 10 0 0 60s 100 1 2519
r 981 857 10 10 0 0 60s 100 1 2519
r 966 861 10 10 0 0 60s 100 1 2519
r 793 797 10 10 0 0 60s 100 1 2516
r 797 797 10 10 0 0 60s 100 1 2516
r 904 799 10 10 0 0 60s 100 1 2516
r 913 801 10 10 0 0 60s 100 1 2516
r 811 803 10 10 0 0 60s 100 1 2516
r 835 810 10 10 0 0 60s 100 1 2516
r 866 812 10 10 0 0 60s 100 1 2516
r 875 815 10 10 0 0 60s 100 1 2516
r 847 818 10 10 0 0 60s 100 1 2516
r 853 819 10 10 0 0 60s 100 1 2516
r 844 820 10 10 0 0 60s 100 1 2516
r 855 829 10 10 0 0 60s 100 1 2516
r 842 843 10 10 0 0 60s 100 1 2516
r 805 656 10 10 0 0 60s 100 1 2517
r 892 661 10 10 0 0 60s 100 1 2517
r 895 662 10 10 0 0 60s 100 1 2517
r 800 665 10 10 0 0 60s 100 1 2517
r 909 665 10 10 0 0 60s 100 1 2517
r 797 673 10 10 0 0 60s 100 1 2517
r 913 676 10 10 0 0 60s 100 1 2517
r 916 676 10 10 0 0 60s 100 1 2517
r 766 682 10 10 0 0 60s 100 1 2517
r 917 683 10 10 0 0 60s 100 1 2517
r 912 684 10 10 0 0 60s 100 1 2517
r 769 686 10 10 0 0 60s 100 1 2517
r 934 691 10 10 0 0 60s 100 1 2517
r 935 695 10 10 0 0 60s 100 1 2517
r 766 696 10 10 0 0 60s 100 1 2517
r 762 713 10 10 0 0 60s 100 1 2517
r 937 733 10 10 0 0 60s 100 1 2517
r 764 748 10 10 0 0 60s 100 1 2517
r 933 760 10 10 0 0 60s 100 1 2517
r 774 761 10 10 0 0 60s 100 1 2517
r 770 772 10 10 0 0 60s 100 1 2517
r 918 778 10 10 0 0 60s 100 1 2517
r 933 779 10 10 0 0 60s 100 1 2517
r 771 782 10 10 0 0 60s 100 1 2517
r 916 785 10 10 0 0 60s 100 1 2517
r 923 790 10 10 0 0 60s 100 1 2517
r 929 792 10 10 0 0 60s 100 1 2517
r 842 606 10 10 0 0 60s 100 1 2518
r 863 609 10 10 0 0 60s 100 1 2518
r 865 610 10 10 0 0 60s 100 1 2518
r 852 620 10 10 0 0 60s 100 1 2518
r 749 648 10 10 0 0 60s 100 1 2518
r 855 651 10 10 0 0 60s 100 1 2518
r 827 652 10 10 0 0 60s 100 1 2518
r 738 656 10 10 0 0 60s 100 1 2518
r 874 656 10 10 0 0 60s 100 1 2518
r 818 657 10 10 0 0 60s 100 1 2518
r 738 658 10 10 0 0 60s 100 1 2518
r 749 659 10 10 0 0 60s 100 1 2518
r 858 660 10 10 0 0 60s 100 1 2518
r 728 667 10 10 0 0 60s 100 1 2518
r 744 669 10 10 0 0 60s 100 1 2518
r 977 670 10 10 0 0 60s 100 1 2518
r 960 672 10 10 0 0 60s 100 1 2518
r 973 672 10 10 0 0 60s 100 1 2518
r 732 674 10 10 0 0 60s 100 1 2518
r 752 677 10 10 0 0 60s 100 1 2518
r 950 687 10 10 0 0 60s 100 1 2518
r 991 694 10 10 0 0 60s 100 1 2518
r 709 784 10 10 0 0 60s 100 1 2518
r 713 787 10 10 0 0 60s 100 1 2518
r 711 789 10 10 0 0 60s 100 1 2518
r 943 792 10 10 0 0 60s 100 1 2518
r 737 798 10 10 0 0 60s 100 1 2518
r 737 800 10 10 0 0 60s 100 1 2518
r 987 805 10 10 0 0 60s 100 1 2518
r 947 806 10 10 0 0 60s 100 1 2518
r 723 811 10 10 0 0 60s 100 1 2518
r 968 811 10 10 0 0 60s 100 1 2518
r 978 811 10 10 0 0 60s 100 1 2518
r 719 815 10 10 0 0 60s 100 1 2518
r 720 818 10 10 0 0 60s 100 1 2518
r 724 820 10 10 0 0 60s 100 1 2518
r 725 828 10 10 0 0 60s 100 1 2518
r 976 829 10 10 0 0 60s 100 1 2518
r 956 837 10 10 0 0 60s 100 1 2518
r 971 842 10 10 0 0 60s 100 1 2518
r 951 852 10 10 0 0 60s 100 1 2518

View File

@ -0,0 +1,40 @@
r 1269 667 10 10 0 0 60s 100 1 2521
r 1266 668 10 10 0 0 60s 100 1 2521
r 1269 669 10 10 0 0 60s 100 1 2521
r 1261 670 10 10 0 0 60s 100 1 2521
r 1347 680 10 10 0 0 60s 100 1 2521
r 1300 683 10 10 0 0 60s 100 1 2521
r 1323 685 10 10 0 0 60s 100 1 2521
r 1257 691 10 10 0 0 60s 100 1 2521
r 1305 691 10 10 0 0 60s 100 1 2521
r 1288 693 10 10 0 0 60s 100 1 2521
r 1309 695 10 10 0 0 60s 100 1 2521
r 1316 695 10 10 0 0 60s 100 1 2521
r 1296 697 10 10 0 0 60s 100 1 2521
r 1312 698 10 10 0 0 60s 100 1 2521
r 1337 699 10 10 0 0 60s 100 1 2521
r 1308 701 10 10 0 0 60s 100 1 2521
r 1319 702 10 10 0 0 60s 100 1 2521
r 1290 707 10 10 0 0 60s 100 1 2521
r 1348 712 10 10 0 0 60s 100 1 2521
r 1354 716 10 10 0 0 60s 100 1 2521
r 1293 717 10 10 0 0 60s 100 1 2521
r 1292 718 10 10 0 0 60s 100 1 2521
r 1344 718 10 10 0 0 60s 100 1 2521
r 1278 724 10 10 0 0 60s 100 1 2521
r 1281 725 10 10 0 0 60s 100 1 2521
r 1276 728 10 10 0 0 60s 100 1 2521
r 1312 735 10 10 0 0 60s 100 1 2521
r 1311 738 10 10 0 0 60s 100 1 2521
r 1330 738 10 10 0 0 60s 100 1 2521
r 1336 739 10 10 0 0 60s 100 1 2521
r 1305 740 10 10 0 0 60s 100 1 2521
r 1272 741 10 10 0 0 60s 100 1 2521
r 1271 742 10 10 0 0 60s 100 1 2521
r 1325 746 10 10 0 0 60s 100 1 2521
r 1268 748 10 10 0 0 60s 100 1 2521
r 1315 749 10 10 0 0 60s 100 1 2521
r 1288 751 10 10 0 0 60s 100 1 2521
r 1289 756 10 10 0 0 60s 100 1 2521
r 1325 759 10 10 0 0 60s 100 1 2521
r 1315 760 10 10 0 0 60s 100 1 2521

View File

@ -0,0 +1,28 @@
r 82 1112 10 10 0 0 60s 100 1 2521
r 59 1113 10 10 0 0 60s 100 1 2521
r 60 1113 10 10 0 0 60s 100 1 2521
r 76 1113 10 10 0 0 60s 100 1 2521
r 55 1114 10 10 0 0 60s 100 1 2521
r 62 1116 10 10 0 0 60s 100 1 2521
r 73 1116 10 10 0 0 60s 100 1 2521
r 81 1119 10 10 0 0 60s 100 1 2521
r 81 1120 10 10 0 0 60s 100 1 2521
r 71 1121 10 10 0 0 60s 100 1 2521
r 68 1122 10 10 0 0 60s 100 1 2521
r 94 1124 10 10 0 0 60s 100 1 2521
r 87 1126 10 10 0 0 60s 100 1 2521
r 96 1127 10 10 0 0 60s 100 1 2521
r 86 1128 10 10 0 0 60s 100 1 2521
r 52 1130 10 10 0 0 60s 100 1 2521
r 60 1130 10 10 0 0 60s 100 1 2521
r 76 1130 10 10 0 0 60s 100 1 2521
r 64 1133 10 10 0 0 60s 100 1 2521
r 52 1134 10 10 0 0 60s 100 1 2521
r 62 1134 10 10 0 0 60s 100 1 2521
r 64 1137 10 10 0 0 60s 100 1 2521
r 90 1137 10 10 0 0 60s 100 1 2521
r 85 1138 10 10 0 0 60s 100 1 2521
r 54 1139 10 10 0 0 60s 100 1 2521
r 74 1141 10 10 0 0 60s 100 1 2521
r 66 1142 10 10 0 0 60s 100 1 2521
r 55 1145 10 10 0 0 60s 100 1 2521

View File

@ -0,0 +1,46 @@
//1šř°ˇŁ´ý
//type cx cy sx sy z dir time percent count vnum
//1_1A
m 70 574 0 0 0 0 1s 100 1 10804
m 69 673 0 0 0 0 1s 100 1 10831
m 131 668 0 0 0 0 1s 100 1 10813
//1_2A
m 180 566 0 0 0 0 1s 100 1 10801
m 295 567 0 0 0 0 1s 100 1 10808
m 282 635 0 0 0 0 1s 100 1 10832
m 181 667 0 0 0 0 1s 100 1 10812
//1_3A
m 345 555 0 0 0 0 1s 100 1 10805
m 400 558 0 0 0 0 1s 100 1 10810
//1_4A
m 67 815 0 0 0 0 1s 100 1 10809
m 140 821 0 0 0 0 1s 100 1 10814
m 189 711 0 0 0 0 1s 100 1 10823
//1_5A
m 274 712 0 0 0 0 1s 100 1 10802
m 225 780 0 0 0 0 1s 100 1 10811
m 328 780 0 0 0 0 1s 100 1 10829
m 274 842 0 0 0 0 1s 100 1 10834
//1_6A
m 350 717 0 0 0 0 1s 100 1 10803
m 419 711 0 0 0 0 1s 100 1 10806
m 363 776 0 0 0 0 1s 100 1 10812
m 347 839 0 0 0 0 1s 100 1 10815
m 366 809 0 0 0 0 1s 100 1 10833
m 429 841 0 0 0 0 1s 100 1 10835
//1_7A
m 94 839 0 0 0 0 1s 100 1 10802
m 55 864 0 0 0 0 1s 100 1 10807
m 142 866 0 0 0 0 1s 100 1 10811
m 51 920 0 0 0 0 1s 100 1 10816
m 90 946 0 0 0 0 1s 100 1 10833
m 144 919 0 0 0 0 1s 100 1 10822
//1_8A
m 194 861 0 0 0 0 1s 100 1 10815
m 243 853 0 0 0 0 1s 100 1 10834
//1_9A
m 312 852 0 0 0 0 1s 100 1 10801
m 364 893 0 0 0 0 1s 100 1 10804
m 406 871 0 0 0 0 1s 100 1 10830
m 431 935 0 0 0 0 1s 100 1 10813

View File

@ -0,0 +1,46 @@
//2šř°ˇŁ´ý
//type cx cy sx sy z dir time percent count vnum
//2_1A
m 70 574 0 0 0 0 1s 100 1 10808
m 69 673 0 0 0 0 1s 100 1 10831
m 131 668 0 0 0 0 1s 100 1 10810
//2_2A
m 180 566 0 0 0 0 1s 100 1 10813
m 295 567 0 0 0 0 1s 100 1 10823
m 282 635 0 0 0 0 1s 100 1 10832
m 181 667 0 0 0 0 1s 100 1 10835
//2_3A
m 345 555 0 0 0 0 1s 100 1 10801
m 400 558 0 0 0 0 1s 100 1 10811
//2_4A
m 67 815 0 0 0 0 1s 100 1 10809
m 140 821 0 0 0 0 1s 100 1 10814
m 189 711 0 0 0 0 1s 100 1 10802
//2_5A
m 274 712 0 0 0 0 1s 100 1 10812
m 225 780 0 0 0 0 1s 100 1 10824
m 328 780 0 0 0 0 1s 100 1 10833
m 274 842 0 0 0 0 1s 100 1 10829
//2_6A
m 350 717 0 0 0 0 1s 100 1 10803
m 419 711 0 0 0 0 1s 100 1 10811
m 363 776 0 0 0 0 1s 100 1 10815
m 347 839 0 0 0 0 1s 100 1 10825
m 366 809 0 0 0 0 1s 100 1 10834
m 429 841 0 0 0 0 1s 100 1 10805
//2_7A
m 94 839 0 0 0 0 1s 100 1 10816
m 55 864 0 0 0 0 1s 100 1 10830
m 142 866 0 0 0 0 1s 100 1 10833
m 51 920 0 0 0 0 1s 100 1 10809
m 90 946 0 0 0 0 1s 100 1 10802
m 144 919 0 0 0 0 1s 100 1 10822
//2_8A
m 194 861 0 0 0 0 1s 100 1 10826
m 243 853 0 0 0 0 1s 100 1 10832
//2_9A
m 312 852 0 0 0 0 1s 100 1 10829
m 364 893 0 0 0 0 1s 100 1 10801
m 406 871 0 0 0 0 1s 100 1 10815
m 431 935 0 0 0 0 1s 100 1 10827

View File

@ -0,0 +1,46 @@
//3šř°ˇŁ´ý
//type cx cy sx sy z dir time percent count vnum
//3_1A
m 70 574 0 0 0 0 1s 100 1 10808
m 69 673 0 0 0 0 1s 100 1 10817
m 131 668 0 0 0 0 1s 100 1 10810
//3_2A
m 180 566 0 0 0 0 1s 100 1 10829
m 295 567 0 0 0 0 1s 100 1 10811
m 282 635 0 0 0 0 1s 100 1 10813
m 181 667 0 0 0 0 1s 100 1 10818
//3_3A
m 345 555 0 0 0 0 1s 100 1 10801
m 400 558 0 0 0 0 1s 100 1 10814
//3_4A
m 67 815 0 0 0 0 1s 100 1 10804
m 140 821 0 0 0 0 1s 100 1 10819
m 189 711 0 0 0 0 1s 100 1 10802
//3_5A
m 274 712 0 0 0 0 1s 100 1 10809
m 225 780 0 0 0 0 1s 100 1 10830
m 328 780 0 0 0 0 1s 100 1 10805
m 274 842 0 0 0 0 1s 100 1 10823
//3_6A
m 350 717 0 0 0 0 1s 100 1 10812
m 419 711 0 0 0 0 1s 100 1 10803
m 363 776 0 0 0 0 1s 100 1 10806
m 347 839 0 0 0 0 1s 100 1 10815
m 366 809 0 0 0 0 1s 100 1 10829
m 429 841 0 0 0 0 1s 100 1 10808
//3_7A
m 94 839 0 0 0 0 1s 100 1 10820
m 55 864 0 0 0 0 1s 100 1 10802
m 142 866 0 0 0 0 1s 100 1 10807
m 51 920 0 0 0 0 1s 100 1 10811
m 90 946 0 0 0 0 1s 100 1 10816
m 144 919 0 0 0 0 1s 100 1 10835
//3_8A
m 194 861 0 0 0 0 1s 100 1 10816
m 243 853 0 0 0 0 1s 100 1 10806
//3_9A
m 312 852 0 0 0 0 1s 100 1 10805
m 364 893 0 0 0 0 1s 100 1 10821
m 406 871 0 0 0 0 1s 100 1 10815
m 431 935 0 0 0 0 1s 100 1 10827

View File

@ -0,0 +1,46 @@
//4šř°ˇŁ´ý
//type cx cy sx sy z dir time percent count vnum
//4_1A
m 70 574 0 0 0 0 1s 100 1 10810
m 69 673 0 0 0 0 1s 100 1 10823
m 131 668 0 0 0 0 1s 100 1 10831
//4_2A
m 180 566 0 0 0 0 1s 100 1 10817
m 295 567 0 0 0 0 1s 100 1 10824
m 282 635 0 0 0 0 1s 100 1 10832
m 181 667 0 0 0 0 1s 100 1 10815
//4_3A
m 345 555 0 0 0 0 1s 100 1 10833
m 400 558 0 0 0 0 1s 100 1 10818
//4_4A
m 67 815 0 0 0 0 1s 100 1 10801
m 140 821 0 0 0 0 1s 100 1 10825
m 189 711 0 0 0 0 1s 100 1 10808
//4_5A
m 274 712 0 0 0 0 1s 100 1 10819
m 225 780 0 0 0 0 1s 100 1 10826
m 328 780 0 0 0 0 1s 100 1 10835
m 274 842 0 0 0 0 1s 100 1 10834
//4_6A
m 350 717 0 0 0 0 1s 100 1 10809
m 419 711 0 0 0 0 1s 100 1 10833
m 363 776 0 0 0 0 1s 100 1 10802
m 347 839 0 0 0 0 1s 100 1 10811
m 366 809 0 0 0 0 1s 100 1 10827
m 429 841 0 0 0 0 1s 100 1 10829
//4_7A
m 94 839 0 0 0 0 1s 100 1 10812
m 55 864 0 0 0 0 1s 100 1 10803
m 142 866 0 0 0 0 1s 100 1 10832
m 51 920 0 0 0 0 1s 100 1 10808
m 90 946 0 0 0 0 1s 100 1 10820
m 144 919 0 0 0 0 1s 100 1 10830
//4_8A
m 194 861 0 0 0 0 1s 100 1 10831
m 243 853 0 0 0 0 1s 100 1 10806
//4_9A
m 312 852 0 0 0 0 1s 100 1 10809
m 364 893 0 0 0 0 1s 100 1 10821
m 406 871 0 0 0 0 1s 100 1 10802
m 431 935 0 0 0 0 1s 100 1 10829

View File

@ -0,0 +1,46 @@
//5šř°ˇŁ´ý
//type cx cy sx sy z dir time percent count vnum
//5_1A
m 70 574 0 0 0 0 1s 100 1 10829
m 69 673 0 0 0 0 1s 100 1 10808
m 131 668 0 0 0 0 1s 100 1 10804
//5_2A
m 180 566 0 0 0 0 1s 100 1 10801
m 295 567 0 0 0 0 1s 100 1 10810
m 282 635 0 0 0 0 1s 100 1 10823
m 181 667 0 0 0 0 1s 100 1 10809
//5_3A
m 345 555 0 0 0 0 1s 100 1 10813
m 400 558 0 0 0 0 1s 100 1 10802
//5_4A
m 67 815 0 0 0 0 1s 100 1 10805
m 140 821 0 0 0 0 1s 100 1 10814
m 189 711 0 0 0 0 1s 100 1 10830
//5_5A
m 274 712 0 0 0 0 1s 100 1 10829
m 225 780 0 0 0 0 1s 100 1 10808
m 328 780 0 0 0 0 1s 100 1 10811
m 274 842 0 0 0 0 1s 100 1 10824
//5_6A
m 350 717 0 0 0 0 1s 100 1 10803
m 419 711 0 0 0 0 1s 100 1 10806
m 363 776 0 0 0 0 1s 100 1 10812
m 347 839 0 0 0 0 1s 100 1 10815
m 366 809 0 0 0 0 1s 100 1 10825
m 429 841 0 0 0 0 1s 100 1 10831
//5_7A
m 94 839 0 0 0 0 1s 100 1 10816
m 55 864 0 0 0 0 1s 100 1 10807
m 142 866 0 0 0 0 1s 100 1 10820
m 51 920 0 0 0 0 1s 100 1 10832
m 90 946 0 0 0 0 1s 100 1 10811
m 144 919 0 0 0 0 1s 100 1 10802
//5_8A
m 194 861 0 0 0 0 1s 100 1 10801
m 243 853 0 0 0 0 1s 100 1 10815
//5_9A
m 312 852 0 0 0 0 1s 100 1 10806
m 364 893 0 0 0 0 1s 100 1 10814
m 406 871 0 0 0 0 1s 100 1 10826
m 431 935 0 0 0 0 1s 100 1 10835

View File

@ -0,0 +1,41 @@
ga 189 424 10 10 0 0 0s 100 1 1007
ga 202 424 10 10 0 0 0s 100 1 1008
ga 203 429 10 10 0 0 0s 100 1 1005
ga 190 432 10 10 0 0 0s 100 1 1007
ga 187 438 10 10 0 0 0s 100 1 1008
ga 214 438 10 10 0 0 0s 100 1 1008
ga 188 443 10 10 0 0 0s 100 1 1009
ga 169 453 10 10 0 0 0s 100 1 1007
ga 200 458 10 10 0 0 0s 100 1 1009
ga 214 461 10 10 0 0 0s 100 1 1009
ga 183 465 10 10 0 0 0s 100 1 1009
ga 201 465 10 10 0 0 0s 100 1 1005
ga 188 470 10 10 0 0 0s 100 1 1005
ga 189 470 10 10 0 0 0s 100 1 1005
ga 183 472 10 10 0 0 0s 100 1 1008
ga 182 475 10 10 0 0 0s 100 1 1007
ga 122 386 10 10 0 0 0s 100 1 1004
ga 145 386 10 10 0 0 0s 100 1 1004
ga 155 387 10 10 0 0 0s 100 1 1003
ga 114 388 10 10 0 0 0s 100 1 1001
ga 196 390 10 10 0 0 0s 100 1 1004
ga 106 393 10 10 0 0 0s 100 1 1001
ga 208 394 10 10 0 0 0s 100 1 1002
ga 107 395 10 10 0 0 0s 100 1 1004
ga 210 396 10 10 0 0 0s 100 1 1003
ga 121 404 10 10 0 0 0s 100 1 1004
ga 217 405 10 10 0 0 0s 100 1 1002
ga 134 409 10 10 0 0 0s 100 1 1002
ga 123 450 10 10 0 0 0s 100 1 1004
ga 117 458 10 10 0 0 0s 100 1 1003
ga 143 473 10 10 0 0 0s 100 1 1004
ga 179 392 10 10 0 0 0s 100 1 1006
ga 153 399 10 10 0 0 0s 100 1 1006
ga 184 408 10 10 0 0 0s 100 1 1006
ga 204 411 10 10 0 0 0s 100 1 1003
ga 140 414 10 10 0 0 0s 100 1 1006
ga 177 415 10 10 0 0 0s 100 1 1006
ga 156 428 10 10 0 0 0s 100 1 1003
ga 147 440 10 10 0 0 0s 100 1 1003
ga 140 453 10 10 0 0 0s 100 1 1006
ga 152 459 10 10 0 0 0s 100 1 1003

View File

@ -0,0 +1,52 @@
ga 184 196 10 10 0 0 0s 100 1 1010
ga 193 196 10 10 0 0 0s 100 1 1010
ga 182 202 10 10 0 0 0s 100 1 1007
ga 184 203 10 10 0 0 0s 100 1 1008
ga 208 205 10 10 0 0 0s 100 1 1010
ga 194 207 10 10 0 0 0s 100 1 1008
ga 187 210 10 10 0 0 0s 100 1 1007
ga 206 216 10 10 0 0 0s 100 1 1008
ga 221 217 10 10 0 0 0s 100 1 1008
ga 229 217 10 10 0 0 0s 100 1 1008
ga 228 219 10 10 0 0 0s 100 1 1008
ga 205 240 10 10 0 0 0s 100 1 1008
ga 169 123 10 10 0 0 0s 100 1 1002
ga 188 126 10 10 0 0 0s 100 1 1001
ga 154 127 10 10 0 0 0s 100 1 1002
ga 190 131 10 10 0 0 0s 100 1 1001
ga 176 132 10 10 0 0 0s 100 1 1004
ga 149 137 10 10 0 0 0s 100 1 1003
ga 135 143 10 10 0 0 0s 100 1 1001
ga 169 146 10 10 0 0 0s 100 1 1002
ga 202 146 10 10 0 0 0s 100 1 1001
ga 216 146 10 10 0 0 0s 100 1 1001
ga 175 151 10 10 0 0 0s 100 1 1003
ga 169 153 10 10 0 0 0s 100 1 1004
ga 127 157 10 10 0 0 0s 100 1 1004
ga 159 161 10 10 0 0 0s 100 1 1002
ga 157 163 10 10 0 0 0s 100 1 1001
ga 131 165 10 10 0 0 0s 100 1 1002
ga 118 176 10 10 0 0 0s 100 1 1003
ga 144 178 10 10 0 0 0s 100 1 1004
ga 235 180 10 10 0 0 0s 100 1 1004
ga 238 180 10 10 0 0 0s 100 1 1004
ga 141 182 10 10 0 0 0s 100 1 1004
ga 144 186 10 10 0 0 0s 100 1 1003
ga 128 187 10 10 0 0 0s 100 1 1003
ga 133 204 10 10 0 0 0s 100 1 1002
ga 146 236 10 10 0 0 0s 100 1 1003
ga 170 166 10 10 0 0 0s 100 1 1005
ga 172 166 10 10 0 0 0s 100 1 1003
ga 216 168 10 10 0 0 0s 100 1 1004
ga 168 178 10 10 0 0 0s 100 1 1004
ga 188 178 10 10 0 0 0s 100 1 1005
ga 150 189 10 10 0 0 0s 100 1 1006
ga 147 190 10 10 0 0 0s 100 1 1006
ga 157 193 10 10 0 0 0s 100 1 1005
ga 164 194 10 10 0 0 0s 100 1 1003
ga 162 207 10 10 0 0 0s 100 1 1003
ga 170 207 10 10 0 0 0s 100 1 1004
ga 155 218 10 10 0 0 0s 100 1 1006
ga 158 222 10 10 0 0 0s 100 1 1005
ga 171 229 10 10 0 0 0s 100 1 1005
ga 210 210 10 10 0 0 0s 100 1 1024

View File

@ -0,0 +1 @@
ma 372 631 0 0 0 0 0s 100 1 8016

View File

@ -0,0 +1,37 @@
r 401 410 10 10 0 0 180s 100 1 1053
r 400 412 10 10 0 0 180s 100 1 1053
r 403 415 10 10 0 0 180s 100 1 1053
r 382 418 10 10 0 0 180s 100 1 1053
r 384 418 10 10 0 0 180s 100 1 1053
r 383 420 10 10 0 0 180s 100 1 1053
r 379 425 10 10 0 0 180s 100 1 1053
r 382 427 10 10 0 0 180s 100 1 1053
r 409 429 10 10 0 0 180s 100 1 1053
r 380 432 10 10 0 0 180s 100 1 1053
r 389 391 10 10 0 0 180s 100 1 1051
r 383 392 10 10 0 0 180s 100 1 1051
r 408 396 10 10 0 0 180s 100 1 1051
r 372 400 10 10 0 0 180s 100 1 1051
r 417 402 10 10 0 0 180s 100 1 1051
r 360 412 10 10 0 0 180s 100 1 1051
r 433 413 10 10 0 0 180s 100 1 1051
r 428 419 10 10 0 0 180s 100 1 1051
r 433 426 10 10 0 0 180s 100 1 1051
r 428 444 10 10 0 0 180s 100 1 1051
r 361 445 10 10 0 0 180s 100 1 1051
r 365 449 10 10 0 0 180s 100 1 1051
r 361 450 10 10 0 0 180s 100 1 1051
r 425 451 10 10 0 0 180s 100 1 1051
r 423 454 10 10 0 0 180s 100 1 1051
r 402 397 10 10 0 0 180s 100 1 1052
r 402 400 10 10 0 0 180s 100 1 1052
r 378 410 10 10 0 0 180s 100 1 1052
r 422 429 10 10 0 0 180s 100 1 1052
r 375 433 10 10 0 0 180s 100 1 1052
r 373 436 10 10 0 0 180s 100 1 1052
r 376 441 10 10 0 0 180s 100 1 1052
r 421 441 10 10 0 0 180s 100 1 1052
r 375 443 10 10 0 0 180s 100 1 1052
r 373 445 10 10 0 0 180s 100 1 1052
r 376 445 10 10 0 0 180s 100 1 1052
r 385 447 10 10 0 0 180s 100 1 1052

View File

@ -0,0 +1,29 @@
ra 398 175 10 10 0 0 0s 100 1 1063
ra 396 180 10 10 0 0 0s 100 1 1063
ra 404 180 10 10 0 0 0s 100 1 1063
ra 382 185 10 10 0 0 0s 100 1 1063
ra 391 197 10 10 0 0 0s 100 1 1063
ra 401 198 10 10 0 0 0s 100 1 1063
ra 395 202 10 10 0 0 0s 100 1 1063
ra 411 204 10 10 0 0 0s 100 1 1063
ra 410 206 10 10 0 0 0s 100 1 1063
ra 370 164 10 10 0 0 0s 100 1 1061
ra 369 176 10 10 0 0 0s 100 1 1061
ra 362 196 10 10 0 0 0s 100 1 1061
ra 365 208 10 10 0 0 0s 100 1 1061
ra 363 216 10 10 0 0 0s 100 1 1061
ra 366 219 10 10 0 0 0s 100 1 1061
ra 374 223 10 10 0 0 0s 100 1 1061
ra 418 223 10 10 0 0 0s 100 1 1061
ra 384 224 10 10 0 0 0s 100 1 1061
ra 417 224 10 10 0 0 0s 100 1 1061
ra 383 168 10 10 0 0 0s 100 1 1062
ra 401 168 10 10 0 0 0s 100 1 1062
ra 388 170 10 10 0 0 0s 100 1 1062
ra 383 171 10 10 0 0 0s 100 1 1062
ra 418 174 10 10 0 0 0s 100 1 1062
ra 376 190 10 10 0 0 0s 100 1 1062
ra 429 192 10 10 0 0 0s 100 1 1062
ra 426 198 10 10 0 0 0s 100 1 1062
ma 418 208 10 10 0 0 0s 100 1 1092

View File

@ -0,0 +1,40 @@
r 625 680 10 10 0 0 60s 100 1 1065
r 632 679 10 10 0 0 60s 100 1 1065
r 612 678 10 10 0 0 60s 100 1 1065
r 611 678 10 10 0 0 60s 100 1 1065
r 601 676 10 10 0 0 60s 100 1 1065
r 626 673 10 10 0 0 60s 100 1 1065
r 641 638 10 10 0 0 60s 100 1 1064
r 587 684 10 10 0 0 60s 100 1 1064
r 641 643 10 10 0 0 60s 100 1 1064
r 599 695 10 10 0 0 60s 100 1 1064
r 585 648 10 10 0 0 60s 100 1 1064
r 632 696 10 10 0 0 60s 100 1 1064
r 588 665 10 10 0 0 60s 100 1 1064
r 632 634 10 10 0 0 60s 100 1 1064
r 579 678 10 10 0 0 60s 100 1 1064
r 596 639 10 10 0 0 60s 100 1 1064
r 591 688 10 10 0 0 60s 100 1 1064
r 629 669 10 10 0 0 60s 100 1 1065
r 597 669 10 10 0 0 60s 100 1 1065
r 597 666 10 10 0 0 60s 100 1 1065
r 632 658 10 10 0 0 60s 100 1 1065
r 634 656 10 10 0 0 60s 100 1 1065
r 633 656 10 10 0 0 60s 100 1 1065
r 600 632 10 10 0 0 60s 100 1 1064
r 642 671 10 10 0 0 60s 100 1 1064
r 607 635 10 10 0 0 60s 100 1 1064
r 581 680 10 10 0 0 60s 100 1 1064
r 592 636 10 10 0 0 60s 100 1 1064
r 638 680 10 10 0 0 60s 100 1 1064
r 639 639 10 10 0 0 60s 100 1 1064
r 616 691 10 10 0 0 60s 100 1 1064
r 647 665 10 10 0 0 60s 100 1 1064
r 621 632 10 10 0 0 60s 100 1 1064
r 641 673 10 10 0 0 60s 100 1 1064
m 617 676 0 0 0 0 9s 100 1 8019

View File

@ -0,0 +1,36 @@
r 616 399 10 10 0 0 60s 100 1 1066
r 586 445 10 10 0 0 60s 100 1 1066
r 635 409 10 10 0 0 60s 100 1 1066
r 635 451 10 10 0 0 60s 100 1 1066
r 653 416 10 10 0 0 60s 100 1 1066
r 614 458 10 10 0 0 60s 100 1 1066
r 583 430 10 10 0 0 60s 100 1 1066
r 608 469 10 10 0 0 60s 100 1 1066
r 614 443 10 10 0 0 60s 100 1 1067
r 628 439 10 10 0 0 60s 100 1 1067
r 628 432 10 10 0 0 60s 100 1 1067
r 628 427 10 10 0 0 60s 100 1 1067
r 636 409 10 10 0 0 60s 100 1 1066
r 593 452 10 10 0 0 60s 100 1 1066
r 586 421 10 10 0 0 60s 100 1 1066
r 605 461 10 10 0 0 60s 100 1 1066
r 582 432 10 10 0 0 60s 100 1 1066
r 605 396 10 10 0 0 60s 100 1 1066
r 593 443 10 10 0 0 60s 100 1 1066
r 626 419 10 10 0 0 60s 100 1 1067
r 625 410 10 10 0 0 60s 100 1 1067
r 609 447 10 10 0 0 60s 100 1 1067
r 635 441 10 10 0 0 60s 100 1 1067
r 605 437 10 10 0 0 60s 100 1 1067
r 593 421 10 10 0 0 60s 100 1 1066
r 617 463 10 10 0 0 60s 100 1 1066
r 587 436 10 10 0 0 60s 100 1 1066
r 625 396 10 10 0 0 60s 100 1 1066
r 580 444 10 10 0 0 60s 100 1 1066
r 595 404 10 10 0 0 60s 100 1 1066
r 642 449 10 10 0 0 60s 100 1 1066
r 636 428 10 10 0 0 60s 100 1 1067
r 614 420 10 10 0 0 60s 100 1 1067
r 601 415 10 10 0 0 60s 100 1 1067
r 623 453 10 10 0 0 60s 100 1 1067
r 602 442 10 10 0 0 60s 100 1 1067

View File

@ -0,0 +1,34 @@
ra 636 170 10 10 0 0 0s 100 1 1069
ra 600 173 10 10 0 0 0s 100 1 1069
ra 649 159 10 10 0 0 0s 100 1 1068
ra 623 208 10 10 0 0 0s 100 1 1068
ra 644 171 10 10 0 0 0s 100 1 1068
ra 607 218 10 10 0 0 0s 100 1 1068
ra 623 200 10 10 0 0 0s 100 1 1069
ra 624 142 10 10 0 0 0s 100 1 1068
ra 589 196 10 10 0 0 0s 100 1 1068
ra 646 159 10 10 0 0 0s 100 1 1068
ra 597 207 10 10 0 0 0s 100 1 1068
ra 637 181 10 10 0 0 0s 100 1 1069
ra 600 183 10 10 0 0 0s 100 1 1069
ra 657 168 10 10 0 0 0s 100 1 1068
ra 628 215 10 10 0 0 0s 100 1 1068
ra 651 186 10 10 0 0 0s 100 1 1068
ra 606 168 10 10 0 0 0s 100 1 1069
ra 629 170 10 10 0 0 0s 100 1 1069
ra 607 158 10 10 0 0 0s 100 1 1068
ra 600 205 10 10 0 0 0s 100 1 1068
ra 656 168 10 10 0 0 0s 100 1 1068
ra 607 213 10 10 0 0 0s 100 1 1068
ra 622 194 10 10 0 0 0s 100 1 1069
ra 608 196 10 10 0 0 0s 100 1 1069
ra 646 183 10 10 0 0 0s 100 1 1068
ra 615 153 10 10 0 0 0s 100 1 1068
ra 633 203 10 10 0 0 0s 100 1 1068
ra 630 178 10 10 0 0 0s 100 1 1069
ra 640 179 10 10 0 0 0s 100 1 1069
ra 584 166 10 10 0 0 0s 100 1 1068
ra 618 212 10 10 0 0 0s 100 1 1068
ra 649 182 10 10 0 0 0s 100 1 1068
ga 607 218 10 10 0 0 0s 100 1 1031

View File

@ -0,0 +1,61 @@
r 219 489 10 10 0 0 60s 100 1 6003
r 211 498 10 10 0 0 60s 100 1 6003
r 223 499 10 10 0 0 60s 100 1 6003
r 207 500 10 10 0 0 60s 100 1 6003
r 218 502 10 10 0 0 60s 100 1 6003
r 245 502 10 10 0 0 60s 100 1 6003
r 259 502 10 10 0 0 60s 100 1 6003
r 212 503 10 10 0 0 60s 100 1 6003
r 251 504 10 10 0 0 60s 100 1 6003
r 227 506 10 10 0 0 60s 100 1 6003
r 223 507 10 10 0 0 60s 100 1 6003
r 251 508 10 10 0 0 60s 100 1 6003
r 231 511 10 10 0 0 60s 100 1 6003
r 218 515 10 10 0 0 60s 100 1 6003
r 228 515 10 10 0 0 60s 100 1 6003
r 221 516 10 10 0 0 60s 100 1 6003
r 239 516 10 10 0 0 60s 100 1 6003
r 235 520 10 10 0 0 60s 100 1 6003
r 228 524 10 10 0 0 60s 100 1 6003
r 242 447 10 10 0 0 60s 100 1 6001
r 231 450 10 10 0 0 60s 100 1 6001
r 238 452 10 10 0 0 60s 100 1 6001
r 236 453 10 10 0 0 60s 100 1 6001
r 260 453 10 10 0 0 60s 100 1 6001
r 243 457 10 10 0 0 60s 100 1 6001
r 230 459 10 10 0 0 60s 100 1 6001
r 263 459 10 10 0 0 60s 100 1 6001
r 241 462 10 10 0 0 60s 100 1 6001
r 258 465 10 10 0 0 60s 100 1 6001
r 259 465 10 10 0 0 60s 100 1 6001
r 262 465 10 10 0 0 60s 100 1 6001
r 268 465 10 10 0 0 60s 100 1 6001
r 233 466 10 10 0 0 60s 100 1 6001
r 234 466 10 10 0 0 60s 100 1 6001
r 247 470 10 10 0 0 60s 100 1 6001
r 261 472 10 10 0 0 60s 100 1 6001
r 248 473 10 10 0 0 60s 100 1 6001
r 254 473 10 10 0 0 60s 100 1 6001
r 260 477 10 10 0 0 60s 100 1 6001
r 264 477 10 10 0 0 60s 100 1 6001
r 270 478 10 10 0 0 60s 100 1 6001
r 220 458 10 10 0 0 60s 100 1 6002
r 219 464 10 10 0 0 60s 100 1 6002
r 223 469 10 10 0 0 60s 100 1 6002
r 239 471 10 10 0 0 60s 100 1 6002
r 225 472 10 10 0 0 60s 100 1 6002
r 244 474 10 10 0 0 60s 100 1 6002
r 243 478 10 10 0 0 60s 100 1 6002
r 237 479 10 10 0 0 60s 100 1 6002
r 248 479 10 10 0 0 60s 100 1 6002
r 263 481 10 10 0 0 60s 100 1 6002
r 233 482 10 10 0 0 60s 100 1 6002
r 228 483 10 10 0 0 60s 100 1 6002
r 232 483 10 10 0 0 60s 100 1 6002
r 227 484 10 10 0 0 60s 100 1 6002
r 235 484 10 10 0 0 60s 100 1 6002
r 261 484 10 10 0 0 60s 100 1 6002
r 237 486 10 10 0 0 60s 100 1 6002
r 271 487 10 10 0 0 60s 100 1 6002
r 269 488 10 10 0 0 60s 100 1 6002
r 261 492 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,63 @@
r 168 331 10 10 0 0 60s 100 1 6003
r 164 333 10 10 0 0 60s 100 1 6003
r 160 336 10 10 0 0 60s 100 1 6003
r 151 337 10 10 0 0 60s 100 1 6003
r 148 339 10 10 0 0 60s 100 1 6003
r 155 342 10 10 0 0 60s 100 1 6003
r 143 346 10 10 0 0 60s 100 1 6003
r 168 346 10 10 0 0 60s 100 1 6003
r 159 353 10 10 0 0 60s 100 1 6003
r 141 354 10 10 0 0 60s 100 1 6003
r 151 354 10 10 0 0 60s 100 1 6003
r 157 355 10 10 0 0 60s 100 1 6003
r 154 356 10 10 0 0 60s 100 1 6003
r 163 356 10 10 0 0 60s 100 1 6003
r 169 356 10 10 0 0 60s 100 1 6003
r 169 357 10 10 0 0 60s 100 1 6003
r 139 358 10 10 0 0 60s 100 1 6003
r 152 360 10 10 0 0 60s 100 1 6003
r 168 365 10 10 0 0 60s 100 1 6003
r 151 375 10 10 0 0 60s 100 1 6003
r 167 381 10 10 0 0 60s 100 1 6003
r 170 388 10 10 0 0 60s 100 1 6003
r 166 389 10 10 0 0 60s 100 1 6003
r 206 331 10 10 0 0 60s 100 1 6001
r 217 334 10 10 0 0 60s 100 1 6001
r 209 344 10 10 0 0 60s 100 1 6001
r 217 350 10 10 0 0 60s 100 1 6001
r 227 350 10 10 0 0 60s 100 1 6001
r 205 351 10 10 0 0 60s 100 1 6001
r 206 352 10 10 0 0 60s 100 1 6001
r 217 353 10 10 0 0 60s 100 1 6001
r 215 355 10 10 0 0 60s 100 1 6001
r 218 356 10 10 0 0 60s 100 1 6001
r 208 360 10 10 0 0 60s 100 1 6001
r 217 360 10 10 0 0 60s 100 1 6001
r 225 360 10 10 0 0 60s 100 1 6001
r 217 364 10 10 0 0 60s 100 1 6001
r 227 364 10 10 0 0 60s 100 1 6001
r 217 368 10 10 0 0 60s 100 1 6001
r 223 376 10 10 0 0 60s 100 1 6001
r 188 320 10 10 0 0 60s 100 1 6002
r 192 324 10 10 0 0 60s 100 1 6002
r 187 326 10 10 0 0 60s 100 1 6002
r 185 327 10 10 0 0 60s 100 1 6002
r 176 328 10 10 0 0 60s 100 1 6002
r 195 328 10 10 0 0 60s 100 1 6002
r 203 329 10 10 0 0 60s 100 1 6002
r 180 334 10 10 0 0 60s 100 1 6002
r 193 334 10 10 0 0 60s 100 1 6002
r 170 335 10 10 0 0 60s 100 1 6002
r 187 335 10 10 0 0 60s 100 1 6002
r 201 341 10 10 0 0 60s 100 1 6002
r 172 358 10 10 0 0 60s 100 1 6002
r 198 358 10 10 0 0 60s 100 1 6002
r 183 359 10 10 0 0 60s 100 1 6002
r 189 364 10 10 0 0 60s 100 1 6002
r 181 371 10 10 0 0 60s 100 1 6002
r 193 371 10 10 0 0 60s 100 1 6002
r 202 371 10 10 0 0 60s 100 1 6002
r 196 374 10 10 0 0 60s 100 1 6002
r 192 375 10 10 0 0 60s 100 1 6002
r 201 376 10 10 0 0 60s 100 1 6002
r 183 385 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,76 @@
r 292 173 10 10 0 0 60s 100 1 6003
r 268 174 10 10 0 0 60s 100 1 6003
r 267 175 10 10 0 0 60s 100 1 6003
r 283 175 10 10 0 0 60s 100 1 6003
r 278 178 10 10 0 0 60s 100 1 6003
r 266 180 10 10 0 0 60s 100 1 6003
r 292 181 10 10 0 0 60s 100 1 6003
r 289 183 10 10 0 0 60s 100 1 6003
r 251 188 10 10 0 0 60s 100 1 6003
r 271 191 10 10 0 0 60s 100 1 6003
r 275 192 10 10 0 0 60s 100 1 6003
r 282 193 10 10 0 0 60s 100 1 6003
r 277 194 10 10 0 0 60s 100 1 6003
r 275 196 10 10 0 0 60s 100 1 6003
r 272 197 10 10 0 0 60s 100 1 6003
r 246 202 10 10 0 0 60s 100 1 6003
r 255 202 10 10 0 0 60s 100 1 6003
r 251 204 10 10 0 0 60s 100 1 6003
r 264 209 10 10 0 0 60s 100 1 6003
r 255 213 10 10 0 0 60s 100 1 6003
r 319 202 10 10 0 0 60s 100 1 6001
r 313 204 10 10 0 0 60s 100 1 6001
r 318 206 10 10 0 0 60s 100 1 6001
r 309 208 10 10 0 0 60s 100 1 6001
r 318 214 10 10 0 0 60s 100 1 6001
r 309 218 10 10 0 0 60s 100 1 6001
r 311 218 10 10 0 0 60s 100 1 6001
r 319 218 10 10 0 0 60s 100 1 6001
r 318 219 10 10 0 0 60s 100 1 6001
r 306 220 10 10 0 0 60s 100 1 6001
r 300 225 10 10 0 0 60s 100 1 6001
r 314 228 10 10 0 0 60s 100 1 6001
r 313 230 10 10 0 0 60s 100 1 6001
r 309 231 10 10 0 0 60s 100 1 6001
r 315 231 10 10 0 0 60s 100 1 6001
r 289 238 10 10 0 0 60s 100 1 6001
r 304 239 10 10 0 0 60s 100 1 6001
r 304 242 10 10 0 0 60s 100 1 6001
r 283 243 10 10 0 0 60s 100 1 6001
r 285 244 10 10 0 0 60s 100 1 6001
r 287 246 10 10 0 0 60s 100 1 6001
r 296 247 10 10 0 0 60s 100 1 6001
r 291 250 10 10 0 0 60s 100 1 6001
r 302 250 10 10 0 0 60s 100 1 6001
r 303 250 10 10 0 0 60s 100 1 6001
r 288 251 10 10 0 0 60s 100 1 6001
r 287 252 10 10 0 0 60s 100 1 6001
r 277 253 10 10 0 0 60s 100 1 6001
r 295 253 10 10 0 0 60s 100 1 6001
r 287 258 10 10 0 0 60s 100 1 6001
r 287 259 10 10 0 0 60s 100 1 6001
r 302 177 10 10 0 0 60s 100 1 6002
r 304 183 10 10 0 0 60s 100 1 6002
r 299 190 10 10 0 0 60s 100 1 6002
r 312 194 10 10 0 0 60s 100 1 6002
r 310 195 10 10 0 0 60s 100 1 6002
r 314 196 10 10 0 0 60s 100 1 6002
r 281 198 10 10 0 0 60s 100 1 6002
r 281 201 10 10 0 0 60s 100 1 6002
r 299 209 10 10 0 0 60s 100 1 6002
r 293 211 10 10 0 0 60s 100 1 6002
r 302 212 10 10 0 0 60s 100 1 6002
r 284 214 10 10 0 0 60s 100 1 6002
r 287 214 10 10 0 0 60s 100 1 6002
r 292 216 10 10 0 0 60s 100 1 6002
r 277 220 10 10 0 0 60s 100 1 6002
r 293 220 10 10 0 0 60s 100 1 6002
r 294 223 10 10 0 0 60s 100 1 6002
r 290 224 10 10 0 0 60s 100 1 6002
r 293 225 10 10 0 0 60s 100 1 6002
r 262 230 10 10 0 0 60s 100 1 6002
r 287 232 10 10 0 0 60s 100 1 6002
r 262 236 10 10 0 0 60s 100 1 6002
r 274 239 10 10 0 0 60s 100 1 6002
r 282 239 10 10 0 0 60s 100 1 6002
r 257 241 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,60 @@
r 468 137 10 10 0 0 60s 100 1 6003
r 490 137 10 10 0 0 60s 100 1 6003
r 492 137 10 10 0 0 60s 100 1 6003
r 496 139 10 10 0 0 60s 100 1 6003
r 463 141 10 10 0 0 60s 100 1 6003
r 475 142 10 10 0 0 60s 100 1 6003
r 482 144 10 10 0 0 60s 100 1 6003
r 467 145 10 10 0 0 60s 100 1 6003
r 492 145 10 10 0 0 60s 100 1 6003
r 496 149 10 10 0 0 60s 100 1 6003
r 502 157 10 10 0 0 60s 100 1 6003
r 507 158 10 10 0 0 60s 100 1 6003
r 507 159 10 10 0 0 60s 100 1 6003
r 496 163 10 10 0 0 60s 100 1 6003
r 495 167 10 10 0 0 60s 100 1 6003
r 494 169 10 10 0 0 60s 100 1 6003
r 506 170 10 10 0 0 60s 100 1 6003
r 511 172 10 10 0 0 60s 100 1 6003
r 515 172 10 10 0 0 60s 100 1 6003
r 515 173 10 10 0 0 60s 100 1 6003
r 506 184 10 10 0 0 60s 100 1 6003
r 513 184 10 10 0 0 60s 100 1 6003
r 442 169 10 10 0 0 60s 100 1 6001
r 441 175 10 10 0 0 60s 100 1 6001
r 447 176 10 10 0 0 60s 100 1 6001
r 442 180 10 10 0 0 60s 100 1 6001
r 448 180 10 10 0 0 60s 100 1 6001
r 446 183 10 10 0 0 60s 100 1 6001
r 459 185 10 10 0 0 60s 100 1 6001
r 453 188 10 10 0 0 60s 100 1 6001
r 459 188 10 10 0 0 60s 100 1 6001
r 461 188 10 10 0 0 60s 100 1 6001
r 456 190 10 10 0 0 60s 100 1 6001
r 461 193 10 10 0 0 60s 100 1 6001
r 451 194 10 10 0 0 60s 100 1 6001
r 463 198 10 10 0 0 60s 100 1 6001
r 465 198 10 10 0 0 60s 100 1 6001
r 469 199 10 10 0 0 60s 100 1 6001
r 468 200 10 10 0 0 60s 100 1 6001
r 475 203 10 10 0 0 60s 100 1 6001
r 469 214 10 10 0 0 60s 100 1 6001
r 469 152 10 10 0 0 60s 100 1 6002
r 464 153 10 10 0 0 60s 100 1 6002
r 465 154 10 10 0 0 60s 100 1 6002
r 458 155 10 10 0 0 60s 100 1 6002
r 463 159 10 10 0 0 60s 100 1 6002
r 452 161 10 10 0 0 60s 100 1 6002
r 458 167 10 10 0 0 60s 100 1 6002
r 468 167 10 10 0 0 60s 100 1 6002
r 460 174 10 10 0 0 60s 100 1 6002
r 487 174 10 10 0 0 60s 100 1 6002
r 469 178 10 10 0 0 60s 100 1 6002
r 488 180 10 10 0 0 60s 100 1 6002
r 466 185 10 10 0 0 60s 100 1 6002
r 478 191 10 10 0 0 60s 100 1 6002
r 507 192 10 10 0 0 60s 100 1 6002
r 478 197 10 10 0 0 60s 100 1 6002
r 490 203 10 10 0 0 60s 100 1 6002
r 491 204 10 10 0 0 60s 100 1 6002
r 489 207 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,60 @@
r 525 320 10 10 0 0 60s 100 1 6003
r 535 337 10 10 0 0 60s 100 1 6003
r 528 338 10 10 0 0 60s 100 1 6003
r 531 341 10 10 0 0 60s 100 1 6003
r 535 341 10 10 0 0 60s 100 1 6003
r 533 342 10 10 0 0 60s 100 1 6003
r 540 342 10 10 0 0 60s 100 1 6003
r 534 343 10 10 0 0 60s 100 1 6003
r 536 344 10 10 0 0 60s 100 1 6003
r 524 347 10 10 0 0 60s 100 1 6003
r 523 352 10 10 0 0 60s 100 1 6003
r 528 353 10 10 0 0 60s 100 1 6003
r 544 353 10 10 0 0 60s 100 1 6003
r 538 357 10 10 0 0 60s 100 1 6003
r 530 358 10 10 0 0 60s 100 1 6003
r 543 358 10 10 0 0 60s 100 1 6003
r 535 361 10 10 0 0 60s 100 1 6003
r 524 362 10 10 0 0 60s 100 1 6003
r 538 362 10 10 0 0 60s 100 1 6003
r 530 364 10 10 0 0 60s 100 1 6003
r 526 368 10 10 0 0 60s 100 1 6003
r 525 380 10 10 0 0 60s 100 1 6003
r 527 380 10 10 0 0 60s 100 1 6003
r 526 383 10 10 0 0 60s 100 1 6003
r 486 323 10 10 0 0 60s 100 1 6001
r 494 338 10 10 0 0 60s 100 1 6001
r 481 344 10 10 0 0 60s 100 1 6001
r 491 344 10 10 0 0 60s 100 1 6001
r 493 347 10 10 0 0 60s 100 1 6001
r 480 350 10 10 0 0 60s 100 1 6001
r 488 353 10 10 0 0 60s 100 1 6001
r 492 356 10 10 0 0 60s 100 1 6001
r 482 361 10 10 0 0 60s 100 1 6001
r 488 363 10 10 0 0 60s 100 1 6001
r 476 364 10 10 0 0 60s 100 1 6001
r 488 374 10 10 0 0 60s 100 1 6001
r 516 318 10 10 0 0 60s 100 1 6002
r 511 319 10 10 0 0 60s 100 1 6002
r 515 321 10 10 0 0 60s 100 1 6002
r 501 322 10 10 0 0 60s 100 1 6002
r 509 328 10 10 0 0 60s 100 1 6002
r 508 329 10 10 0 0 60s 100 1 6002
r 503 332 10 10 0 0 60s 100 1 6002
r 519 340 10 10 0 0 60s 100 1 6002
r 497 342 10 10 0 0 60s 100 1 6002
r 520 343 10 10 0 0 60s 100 1 6002
r 502 344 10 10 0 0 60s 100 1 6002
r 508 349 10 10 0 0 60s 100 1 6002
r 511 363 10 10 0 0 60s 100 1 6002
r 512 365 10 10 0 0 60s 100 1 6002
r 517 368 10 10 0 0 60s 100 1 6002
r 518 368 10 10 0 0 60s 100 1 6002
r 501 370 10 10 0 0 60s 100 1 6002
r 507 370 10 10 0 0 60s 100 1 6002
r 513 372 10 10 0 0 60s 100 1 6002
r 515 372 10 10 0 0 60s 100 1 6002
r 513 374 10 10 0 0 60s 100 1 6002
r 508 376 10 10 0 0 60s 100 1 6002
r 497 378 10 10 0 0 60s 100 1 6002
r 509 381 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,62 @@
r 540 464 10 10 0 0 60s 100 1 6003
r 531 465 10 10 0 0 60s 100 1 6003
r 536 466 10 10 0 0 60s 100 1 6003
r 531 468 10 10 0 0 60s 100 1 6003
r 537 470 10 10 0 0 60s 100 1 6003
r 538 475 10 10 0 0 60s 100 1 6003
r 539 484 10 10 0 0 60s 100 1 6003
r 522 486 10 10 0 0 60s 100 1 6003
r 538 487 10 10 0 0 60s 100 1 6003
r 526 497 10 10 0 0 60s 100 1 6003
r 542 501 10 10 0 0 60s 100 1 6003
r 538 505 10 10 0 0 60s 100 1 6003
r 520 507 10 10 0 0 60s 100 1 6003
r 523 510 10 10 0 0 60s 100 1 6003
r 533 513 10 10 0 0 60s 100 1 6003
r 532 516 10 10 0 0 60s 100 1 6003
r 509 518 10 10 0 0 60s 100 1 6003
r 513 521 10 10 0 0 60s 100 1 6003
r 497 454 10 10 0 0 60s 100 1 6001
r 490 457 10 10 0 0 60s 100 1 6001
r 480 463 10 10 0 0 60s 100 1 6001
r 485 464 10 10 0 0 60s 100 1 6001
r 497 464 10 10 0 0 60s 100 1 6001
r 490 467 10 10 0 0 60s 100 1 6001
r 489 468 10 10 0 0 60s 100 1 6001
r 474 472 10 10 0 0 60s 100 1 6001
r 484 473 10 10 0 0 60s 100 1 6001
r 475 474 10 10 0 0 60s 100 1 6001
r 492 474 10 10 0 0 60s 100 1 6001
r 481 475 10 10 0 0 60s 100 1 6001
r 470 477 10 10 0 0 60s 100 1 6001
r 480 481 10 10 0 0 60s 100 1 6001
r 481 485 10 10 0 0 60s 100 1 6001
r 486 488 10 10 0 0 60s 100 1 6001
r 485 489 10 10 0 0 60s 100 1 6001
r 480 497 10 10 0 0 60s 100 1 6001
r 480 499 10 10 0 0 60s 100 1 6001
r 479 503 10 10 0 0 60s 100 1 6001
r 475 504 10 10 0 0 60s 100 1 6001
r 478 504 10 10 0 0 60s 100 1 6001
r 475 505 10 10 0 0 60s 100 1 6001
r 473 512 10 10 0 0 60s 100 1 6001
r 508 454 10 10 0 0 60s 100 1 6002
r 529 459 10 10 0 0 60s 100 1 6002
r 509 460 10 10 0 0 60s 100 1 6002
r 506 466 10 10 0 0 60s 100 1 6002
r 508 466 10 10 0 0 60s 100 1 6002
r 499 468 10 10 0 0 60s 100 1 6002
r 520 473 10 10 0 0 60s 100 1 6002
r 498 475 10 10 0 0 60s 100 1 6002
r 522 480 10 10 0 0 60s 100 1 6002
r 507 481 10 10 0 0 60s 100 1 6002
r 495 483 10 10 0 0 60s 100 1 6002
r 493 484 10 10 0 0 60s 100 1 6002
r 500 485 10 10 0 0 60s 100 1 6002
r 514 491 10 10 0 0 60s 100 1 6002
r 509 500 10 10 0 0 60s 100 1 6002
r 496 503 10 10 0 0 60s 100 1 6002
r 486 513 10 10 0 0 60s 100 1 6002
r 491 514 10 10 0 0 60s 100 1 6002
r 478 516 10 10 0 0 60s 100 1 6002
r 489 518 10 10 0 0 60s 100 1 6002

View File

@ -0,0 +1,48 @@
r 696 607 10 10 0 0 60s 100 1 6003
r 699 610 10 10 0 0 60s 100 1 6003
r 675 611 10 10 0 0 60s 100 1 6003
r 680 615 10 10 0 0 60s 100 1 6003
r 686 618 10 10 0 0 60s 100 1 6003
r 698 618 10 10 0 0 60s 100 1 6003
r 664 624 10 10 0 0 60s 100 1 6003
r 662 627 10 10 0 0 60s 100 1 6003
r 694 627 10 10 0 0 60s 100 1 6003
r 701 627 10 10 0 0 60s 100 1 6003
r 697 628 10 10 0 0 60s 100 1 6003
r 687 629 10 10 0 0 60s 100 1 6003
r 708 629 10 10 0 0 60s 100 1 6003
r 683 631 10 10 0 0 60s 100 1 6003
r 693 632 10 10 0 0 60s 100 1 6003
r 708 632 10 10 0 0 60s 100 1 6003
r 705 634 10 10 0 0 60s 100 1 6003
r 671 635 10 10 0 0 60s 100 1 6003
r 709 635 10 10 0 0 60s 100 1 6003
r 669 636 10 10 0 0 60s 100 1 6003
r 662 637 10 10 0 0 60s 100 1 6003
r 715 639 10 10 0 0 60s 100 1 6003
r 704 640 10 10 0 0 60s 100 1 6003
r 655 641 10 10 0 0 60s 100 1 6003
r 659 642 10 10 0 0 60s 100 1 6003
r 682 644 10 10 0 0 60s 100 1 6003
r 674 645 10 10 0 0 60s 100 1 6003
r 680 645 10 10 0 0 60s 100 1 6003
r 698 645 10 10 0 0 60s 100 1 6003
r 684 646 10 10 0 0 60s 100 1 6003
r 678 648 10 10 0 0 60s 100 1 6003
r 689 648 10 10 0 0 60s 100 1 6003
r 697 649 10 10 0 0 60s 100 1 6003
r 692 651 10 10 0 0 60s 100 1 6003
r 686 653 10 10 0 0 60s 100 1 6003
r 708 653 10 10 0 0 60s 100 1 6003
r 699 654 10 10 0 0 60s 100 1 6003
r 686 655 10 10 0 0 60s 100 1 6003
r 693 656 10 10 0 0 60s 100 1 6003
r 668 661 10 10 0 0 60s 100 1 6003
r 687 662 10 10 0 0 60s 100 1 6003
r 679 664 10 10 0 0 60s 100 1 6003
r 684 670 10 10 0 0 60s 100 1 6003
r 685 677 10 10 0 0 60s 100 1 6003
r 679 682 10 10 0 0 60s 100 1 6003
r 679 703 10 10 0 0 60s 100 1 6003
r 685 715 10 10 0 0 60s 100 1 6003
r 683 724 10 10 0 0 60s 100 1 6003

View File

@ -0,0 +1,5 @@
//적룡성비
m 352 362 0 0 0 1 10s 100 1 20385
//quest_NPC
m 362 541 1 1 0 0 10s 100 1 20393
m 686 639 1 1 0 0 10s 100 1 20390

View File

@ -0,0 +1,246 @@
//type cx cy sx sy z dir time percent count vnum
// NO1
ra 75 162 1 1 0 0 0s 100 1 901
ra 75 162 1 1 0 0 0s 100 1 901
ra 76 197 1 1 0 0 0s 100 1 901
ra 76 197 1 1 0 0 0s 100 1 901
ra 78 234 1 1 0 0 0s 100 1 901
ra 78 234 1 1 0 0 0s 100 1 901
ra 81 272 1 1 0 0 0s 100 1 901
ra 81 272 1 1 0 0 0s 100 1 901
ra 100 213 1 1 0 0 0s 100 1 901
ra 100 213 1 1 0 0 0s 100 1 901
ra 142 216 1 1 0 0 0s 100 1 901
ra 142 216 1 1 0 0 0s 100 1 901
ra 145 244 1 1 0 0 0s 100 1 901
ra 145 244 1 1 0 0 0s 100 1 901
ra 144 277 1 1 0 0 0s 100 1 901
ra 144 277 1 1 0 0 0s 100 1 901
// NO2
ra 239 108 1 1 0 0 0s 100 1 901
ra 239 108 1 1 0 0 0s 100 1 901
ra 278 107 1 1 0 0 0s 100 1 901
ra 278 107 1 1 0 0 0s 100 1 901
ra 301 118 1 1 0 0 0s 100 1 901
ra 301 118 1 1 0 0 0s 100 1 901
ra 300 156 1 1 0 0 0s 100 1 901
ra 300 156 1 1 0 0 0s 100 1 901
ra 281 175 1 1 0 0 0s 100 1 901
ra 281 175 1 1 0 0 0s 100 1 901
ra 237 172 1 1 0 0 0s 100 1 901
ra 237 172 1 1 0 0 0s 100 1 901
ra 228 192 1 1 0 0 0s 100 1 901
ra 228 192 1 1 0 0 0s 100 1 901
ra 228 230 1 1 0 0 0s 100 1 901
ra 228 230 1 1 0 0 0s 100 1 901
ra 252 240 1 1 0 0 0s 100 1 901
ra 252 240 1 1 0 0 0s 100 1 901
ra 289 239 1 1 0 0 0s 100 1 901
ra 289 239 1 1 0 0 0s 100 1 901
// NO3
ra 423 239 1 1 0 0 0s 100 1 901
ra 423 239 1 1 0 0 0s 100 1 901
ra 418 178 1 1 0 0 0s 100 1 901
ra 418 178 1 1 0 0 0s 100 1 901
ra 417 116 1 1 0 0 0s 100 1 901
ra 417 116 1 1 0 0 0s 100 1 901
ra 450 117 1 1 0 0 0s 100 1 901
ra 450 117 1 1 0 0 0s 100 1 901
ra 484 121 1 1 0 0 0s 100 1 901
ra 484 121 1 1 0 0 0s 100 1 901
ra 484 163 1 1 0 0 0s 100 1 901
ra 484 163 1 1 0 0 0s 100 1 901
ra 486 210 1 1 0 0 0s 100 1 901
ra 486 210 1 1 0 0 0s 100 1 901
ra 487 253 1 1 0 0 0s 100 1 901
ra 487 253 1 1 0 0 0s 100 1 901
// NO4
ra 105 370 1 1 0 0 0s 100 1 903
ra 105 370 1 1 0 0 0s 100 1 903
ra 136 367 1 1 0 0 0s 100 1 903
ra 136 367 1 1 0 0 0s 100 1 903
ra 164 372 1 1 0 0 0s 100 1 903
ra 164 372 1 1 0 0 0s 100 1 903
ra 164 400 1 1 0 0 0s 100 1 903
ra 164 400 1 1 0 0 0s 100 1 903
ra 164 434 1 1 0 0 0s 100 1 903
ra 164 434 1 1 0 0 0s 100 1 903
ra 138 428 1 1 0 0 0s 100 1 903
ra 138 428 1 1 0 0 0s 100 1 903
ra 107 435 1 1 0 0 0s 100 1 903
ra 107 435 1 1 0 0 0s 100 1 903
ra 168 462 1 1 0 0 0s 100 1 903
ra 168 462 1 1 0 0 0s 100 1 903
ra 165 496 1 1 0 0 0s 100 1 903
ra 165 496 1 1 0 0 0s 100 1 903
ra 139 496 1 1 0 0 0s 100 1 903
ra 139 496 1 1 0 0 0s 100 1 903
ra 109 499 1 1 0 0 0s 100 1 903
ra 109 499 1 1 0 0 0s 100 1 903
// NO5
ra 319 359 1 1 0 0 0s 100 1 902
ra 319 359 1 1 0 0 0s 100 1 902
ra 283 362 1 1 0 0 0s 100 1 902
ra 283 362 1 1 0 0 0s 100 1 902
ra 251 362 1 1 0 0 0s 100 1 902
ra 251 362 1 1 0 0 0s 100 1 902
ra 251 393 1 1 0 0 0s 100 1 902
ra 251 393 1 1 0 0 0s 100 1 902
ra 252 427 1 1 0 0 0s 100 1 902
ra 252 427 1 1 0 0 0s 100 1 902
ra 281 428 1 1 0 0 0s 100 1 902
ra 281 428 1 1 0 0 0s 100 1 902
ra 310 431 1 1 0 0 0s 100 1 902
ra 310 431 1 1 0 0 0s 100 1 902
ra 310 459 1 1 0 0 0s 100 1 902
ra 310 459 1 1 0 0 0s 100 1 902
ra 310 494 1 1 0 0 0s 100 1 902
ra 310 494 1 1 0 0 0s 100 1 902
ra 279 494 1 1 0 0 0s 100 1 902
ra 279 494 1 1 0 0 0s 100 1 902
ra 243 496 1 1 0 0 0s 100 1 902
ra 243 496 1 1 0 0 0s 100 1 902
// NO6
ra 495 349 1 1 0 0 0s 100 1 903
ra 495 349 1 1 0 0 0s 100 1 903
ra 460 352 1 1 0 0 0s 100 1 903
ra 460 352 1 1 0 0 0s 100 1 903
ra 427 355 1 1 0 0 0s 100 1 903
ra 427 355 1 1 0 0 0s 100 1 903
ra 425 383 1 1 0 0 0s 100 1 903
ra 425 383 1 1 0 0 0s 100 1 903
ra 428 416 1 1 0 0 0s 100 1 903
ra 428 416 1 1 0 0 0s 100 1 903
ra 460 416 1 1 0 0 0s 100 1 903
ra 460 416 1 1 0 0 0s 100 1 903
ra 493 415 1 1 0 0 0s 100 1 903
ra 493 415 1 1 0 0 0s 100 1 903
ra 429 449 1 1 0 0 0s 100 1 903
ra 429 449 1 1 0 0 0s 100 1 903
ra 431 482 1 1 0 0 0s 100 1 903
ra 431 482 1 1 0 0 0s 100 1 903
ra 461 482 1 1 0 0 0s 100 1 903
ra 461 482 1 1 0 0 0s 100 1 903
ra 494 482 1 1 0 0 0s 100 1 903
ra 494 482 1 1 0 0 0s 100 1 903
// NO7
ra 128 549 1 1 0 0 0s 100 1 901
ra 128 549 1 1 0 0 0s 100 1 901
ra 166 549 1 1 0 0 0s 100 1 901
ra 166 549 1 1 0 0 0s 100 1 901
ra 194 551 1 1 0 0 0s 100 1 901
ra 194 551 1 1 0 0 0s 100 1 901
ra 195 579 1 1 0 0 0s 100 1 901
ra 195 579 1 1 0 0 0s 100 1 901
ra 195 615 1 1 0 0 0s 100 1 901
ra 195 615 1 1 0 0 0s 100 1 901
ra 160 614 1 1 0 0 0s 100 1 901
ra 160 614 1 1 0 0 0s 100 1 901
ra 125 614 1 1 0 0 0s 100 1 901
ra 125 614 1 1 0 0 0s 100 1 901
ra 123 647 1 1 0 0 0s 100 1 901
ra 123 647 1 1 0 0 0s 100 1 901
ra 123 677 1 1 0 0 0s 100 1 901
ra 123 677 1 1 0 0 0s 100 1 901
ra 151 681 1 1 0 0 0s 100 1 901
ra 151 681 1 1 0 0 0s 100 1 901
ra 183 683 1 1 0 0 0s 100 1 901
ra 183 683 1 1 0 0 0s 100 1 901
ra 182 713 1 1 0 0 0s 100 1 901
ra 182 713 1 1 0 0 0s 100 1 901
ra 183 746 1 1 0 0 0s 100 1 901
ra 183 746 1 1 0 0 0s 100 1 901
ra 148 747 1 1 0 0 0s 100 1 901
ra 148 747 1 1 0 0 0s 100 1 901
ra 115 747 1 1 0 0 0s 100 1 901
ra 115 747 1 1 0 0 0s 100 1 901
// NO8
ra 538 57 1 1 0 0 0s 100 1 902
ra 538 57 1 1 0 0 0s 100 1 902
ra 539 79 1 1 0 0 0s 100 1 902
ra 539 79 1 1 0 0 0s 100 1 902
ra 545 136 1 1 0 0 0s 100 1 902
ra 545 136 1 1 0 0 0s 100 1 902
ra 546 167 1 1 0 0 0s 100 1 902
ra 546 167 1 1 0 0 0s 100 1 902
ra 549 200 1 1 0 0 0s 100 1 902
ra 549 200 1 1 0 0 0s 100 1 902
ra 551 229 1 1 0 0 0s 100 1 902
ra 551 229 1 1 0 0 0s 100 1 902
ra 550 267 1 1 0 0 0s 100 1 902
ra 550 267 1 1 0 0 0s 100 1 902
ra 582 137 1 1 0 0 0s 100 1 902
ra 582 137 1 1 0 0 0s 100 1 902
ra 582 201 1 1 0 0 0s 100 1 902
ra 586 201 1 1 0 0 0s 100 1 902
ra 613 60 1 1 0 0 0s 100 1 902
ra 613 60 1 1 0 0 0s 100 1 902
ra 617 98 1 1 0 0 0s 100 1 902
ra 617 98 1 1 0 0 0s 100 1 902
ra 619 138 1 1 0 0 0s 100 1 902
ra 619 138 1 1 0 0 0s 100 1 902
ra 620 168 1 1 0 0 0s 100 1 902
ra 620 168 1 1 0 0 0s 100 1 902
ra 623 202 1 1 0 0 0s 100 1 902
ra 623 202 1 1 0 0 0s 100 1 902
ra 627 233 1 1 0 0 0s 100 1 902
ra 627 233 1 1 0 0 0s 100 1 902
ra 624 271 1 1 0 0 0s 100 1 902
ra 624 271 1 1 0 0 0s 100 1 902
// NO9
ra 310 568 1 1 0 0 0s 100 1 903
ra 310 568 1 1 0 0 0s 100 1 903
ra 310 596 1 1 0 0 0s 100 1 903
ra 310 596 1 1 0 0 0s 100 1 903
ra 314 637 1 1 0 0 0s 100 1 903
ra 314 637 1 1 0 0 0s 100 1 903
ra 313 674 1 1 0 0 0s 100 1 903
ra 313 674 1 1 0 0 0s 100 1 903
ra 310 705 1 1 0 0 0s 100 1 903
ra 310 705 1 1 0 0 0s 100 1 903
ra 341 704 1 1 0 0 0s 100 1 903
ra 341 704 1 1 0 0 0s 100 1 903
ra 342 566 1 1 0 0 0s 100 1 903
ra 342 566 1 1 0 0 0s 100 1 903
ra 374 567 1 1 0 0 0s 100 1 903
ra 374 567 1 1 0 0 0s 100 1 903
ra 375 595 1 1 0 0 0s 100 1 903
ra 375 595 1 1 0 0 0s 100 1 903
ra 377 632 1 1 0 0 0s 100 1 903
ra 377 632 1 1 0 0 0s 100 1 903
ra 374 674 1 1 0 0 0s 100 1 903
ra 374 674 1 1 0 0 0s 100 1 903
ra 374 701 1 1 0 0 0s 100 1 903
ra 374 701 1 1 0 0 0s 100 1 903
ra 404 702 1 1 0 0 0s 100 1 903
ra 404 702 1 1 0 0 0s 100 1 903
ra 406 563 1 1 0 0 0s 100 1 903
ra 406 563 1 1 0 0 0s 100 1 903
ra 438 563 1 1 0 0 0s 100 1 903
ra 438 563 1 1 0 0 0s 100 1 903
ra 437 591 1 1 0 0 0s 100 1 903
ra 437 591 1 1 0 0 0s 100 1 903
ra 440 631 1 1 0 0 0s 100 1 903
ra 440 631 1 1 0 0 0s 100 1 903
ra 441 674 1 1 0 0 0s 100 1 903
ra 441 674 1 1 0 0 0s 100 1 903
ra 440 704 1 1 0 0 0s 100 1 903
ra 440 704 1 1 0 0 0s 100 1 903
// boss1
ra 579 376 1 1 0 0 0s 100 1 903
ra 573 367 1 1 0 0 0s 100 1 903
ra 573 355 1 1 0 0 0s 100 1 903
ra 579 343 1 1 0 0 0s 100 1 903
ra 593 344 1 1 0 0 0s 100 1 903
ra 604 355 1 1 0 0 0s 100 1 903
ra 611 368 1 1 0 0 0s 100 1 903
ra 598 381 1 1 0 0 0s 100 1 903
ra 584 365 1 1 0 0 0s 100 1 903
ra 580 356 1 1 0 0 0s 100 1 903
ra 585 348 1 1 0 0 0s 100 1 903
ra 596 353 1 1 0 0 0s 100 1 903
ra 588 358 1 1 0 0 0s 100 1 903
ga 596 332 1 1 0 0 0s 100 1 5008
//quest NPC
ma 592 331 0 0 0 0 0m 100 1 20352

View File

@ -0,0 +1,249 @@
//type cx cy sx sy z dir time percent count vnum
// NO1
ra 75 162 1 1 0 0 0s 100 1 911
ra 75 162 1 1 0 0 0s 100 1 911
ra 76 197 1 1 0 0 0s 100 1 911
ra 76 197 1 1 0 0 0s 100 1 911
ra 78 234 1 1 0 0 0s 100 1 911
ra 78 234 1 1 0 0 0s 100 1 911
ra 81 272 1 1 0 0 0s 100 1 911
ra 81 272 1 1 0 0 0s 100 1 911
ra 100 213 1 1 0 0 0s 100 1 911
ra 100 213 1 1 0 0 0s 100 1 911
ra 142 216 1 1 0 0 0s 100 1 911
ra 142 216 1 1 0 0 0s 100 1 911
ra 145 244 1 1 0 0 0s 100 1 911
ra 145 244 1 1 0 0 0s 100 1 911
ra 144 277 1 1 0 0 0s 100 1 911
ra 144 277 1 1 0 0 0s 100 1 911
// NO2
ra 239 108 1 1 0 0 0s 100 1 911
ra 239 108 1 1 0 0 0s 100 1 911
ra 278 107 1 1 0 0 0s 100 1 911
ra 278 107 1 1 0 0 0s 100 1 911
ra 301 118 1 1 0 0 0s 100 1 911
ra 301 118 1 1 0 0 0s 100 1 911
ra 300 156 1 1 0 0 0s 100 1 911
ra 300 156 1 1 0 0 0s 100 1 911
ra 281 175 1 1 0 0 0s 100 1 911
ra 281 175 1 1 0 0 0s 100 1 911
ra 237 172 1 1 0 0 0s 100 1 911
ra 237 172 1 1 0 0 0s 100 1 911
ra 228 192 1 1 0 0 0s 100 1 911
ra 228 192 1 1 0 0 0s 100 1 911
ra 228 230 1 1 0 0 0s 100 1 911
ra 228 230 1 1 0 0 0s 100 1 911
ra 252 240 1 1 0 0 0s 100 1 911
ra 252 240 1 1 0 0 0s 100 1 911
ra 289 239 1 1 0 0 0s 100 1 911
ra 289 239 1 1 0 0 0s 100 1 911
// NO3
ra 423 239 1 1 0 0 0s 100 1 911
ra 423 239 1 1 0 0 0s 100 1 911
ra 418 178 1 1 0 0 0s 100 1 911
ra 418 178 1 1 0 0 0s 100 1 911
ra 417 116 1 1 0 0 0s 100 1 911
ra 417 116 1 1 0 0 0s 100 1 911
ra 450 117 1 1 0 0 0s 100 1 911
ra 450 117 1 1 0 0 0s 100 1 911
ra 484 121 1 1 0 0 0s 100 1 911
ra 484 121 1 1 0 0 0s 100 1 911
ra 484 163 1 1 0 0 0s 100 1 911
ra 484 163 1 1 0 0 0s 100 1 911
ra 486 210 1 1 0 0 0s 100 1 911
ra 486 210 1 1 0 0 0s 100 1 911
ra 487 253 1 1 0 0 0s 100 1 911
ra 487 253 1 1 0 0 0s 100 1 911
// NO4
ra 105 370 1 1 0 0 0s 100 1 914
ra 105 370 1 1 0 0 0s 100 1 914
ra 136 367 1 1 0 0 0s 100 1 914
ra 136 367 1 1 0 0 0s 100 1 914
ra 164 372 1 1 0 0 0s 100 1 914
ra 164 372 1 1 0 0 0s 100 1 914
ra 164 400 1 1 0 0 0s 100 1 914
ra 164 400 1 1 0 0 0s 100 1 914
ra 164 434 1 1 0 0 0s 100 1 914
ra 164 434 1 1 0 0 0s 100 1 914
ra 138 428 1 1 0 0 0s 100 1 914
ra 138 428 1 1 0 0 0s 100 1 914
ra 107 435 1 1 0 0 0s 100 1 914
ra 107 435 1 1 0 0 0s 100 1 914
ra 168 462 1 1 0 0 0s 100 1 914
ra 168 462 1 1 0 0 0s 100 1 914
ra 165 496 1 1 0 0 0s 100 1 914
ra 165 496 1 1 0 0 0s 100 1 914
ra 139 496 1 1 0 0 0s 100 1 914
ra 139 496 1 1 0 0 0s 100 1 914
ra 109 499 1 1 0 0 0s 100 1 914
ra 109 499 1 1 0 0 0s 100 1 914
// NO5
ra 319 359 1 1 0 0 0s 100 1 911
ra 319 359 1 1 0 0 0s 100 1 911
ra 283 362 1 1 0 0 0s 100 1 911
ra 283 362 1 1 0 0 0s 100 1 911
ra 251 362 1 1 0 0 0s 100 1 911
ra 251 362 1 1 0 0 0s 100 1 911
ra 251 393 1 1 0 0 0s 100 1 911
ra 251 393 1 1 0 0 0s 100 1 911
ra 252 427 1 1 0 0 0s 100 1 911
ra 252 427 1 1 0 0 0s 100 1 911
ra 281 428 1 1 0 0 0s 100 1 911
ra 281 428 1 1 0 0 0s 100 1 911
ra 310 431 1 1 0 0 0s 100 1 911
ra 310 431 1 1 0 0 0s 100 1 911
ra 310 459 1 1 0 0 0s 100 1 911
ra 310 459 1 1 0 0 0s 100 1 911
ra 310 494 1 1 0 0 0s 100 1 911
ra 310 494 1 1 0 0 0s 100 1 911
ra 279 494 1 1 0 0 0s 100 1 911
ra 279 494 1 1 0 0 0s 100 1 911
ra 243 496 1 1 0 0 0s 100 1 911
ra 243 496 1 1 0 0 0s 100 1 911
// NO6
ra 495 349 1 1 0 0 0s 100 1 912
ra 495 349 1 1 0 0 0s 100 1 912
ra 460 352 1 1 0 0 0s 100 1 912
ra 460 352 1 1 0 0 0s 100 1 912
ra 427 355 1 1 0 0 0s 100 1 912
ra 427 355 1 1 0 0 0s 100 1 912
ra 425 383 1 1 0 0 0s 100 1 912
ra 425 383 1 1 0 0 0s 100 1 912
ra 428 416 1 1 0 0 0s 100 1 912
ra 428 416 1 1 0 0 0s 100 1 912
ra 460 416 1 1 0 0 0s 100 1 912
ra 460 416 1 1 0 0 0s 100 1 912
ra 493 415 1 1 0 0 0s 100 1 912
ra 493 415 1 1 0 0 0s 100 1 912
ra 429 449 1 1 0 0 0s 100 1 912
ra 429 449 1 1 0 0 0s 100 1 912
ra 431 482 1 1 0 0 0s 100 1 912
ra 431 482 1 1 0 0 0s 100 1 912
ra 461 482 1 1 0 0 0s 100 1 912
ra 461 482 1 1 0 0 0s 100 1 912
ra 494 482 1 1 0 0 0s 100 1 912
ra 494 482 1 1 0 0 0s 100 1 912
// NO7
ra 128 549 1 1 0 0 0s 100 1 912
ra 128 549 1 1 0 0 0s 100 1 912
ra 166 549 1 1 0 0 0s 100 1 912
ra 166 549 1 1 0 0 0s 100 1 912
ra 194 551 1 1 0 0 0s 100 1 912
ra 194 551 1 1 0 0 0s 100 1 912
ra 195 579 1 1 0 0 0s 100 1 912
ra 195 579 1 1 0 0 0s 100 1 912
ra 195 615 1 1 0 0 0s 100 1 912
ra 195 615 1 1 0 0 0s 100 1 912
ra 160 614 1 1 0 0 0s 100 1 912
ra 160 614 1 1 0 0 0s 100 1 912
ra 125 614 1 1 0 0 0s 100 1 912
ra 125 614 1 1 0 0 0s 100 1 912
ra 123 647 1 1 0 0 0s 100 1 912
ra 123 647 1 1 0 0 0s 100 1 912
ra 123 677 1 1 0 0 0s 100 1 912
ra 123 677 1 1 0 0 0s 100 1 912
ra 151 681 1 1 0 0 0s 100 1 912
ra 151 681 1 1 0 0 0s 100 1 912
ra 183 683 1 1 0 0 0s 100 1 912
ra 183 683 1 1 0 0 0s 100 1 912
ra 182 713 1 1 0 0 0s 100 1 912
ra 182 713 1 1 0 0 0s 100 1 912
ra 183 746 1 1 0 0 0s 100 1 912
ra 183 746 1 1 0 0 0s 100 1 912
ra 148 747 1 1 0 0 0s 100 1 912
ra 148 747 1 1 0 0 0s 100 1 912
ra 115 747 1 1 0 0 0s 100 1 912
ra 115 747 1 1 0 0 0s 100 1 912
// NO8
ra 538 57 1 1 0 0 0s 100 1 913
ra 538 57 1 1 0 0 0s 100 1 913
ra 539 79 1 1 0 0 0s 100 1 913
ra 539 79 1 1 0 0 0s 100 1 913
ra 545 136 1 1 0 0 0s 100 1 913
ra 545 136 1 1 0 0 0s 100 1 913
ra 546 167 1 1 0 0 0s 100 1 913
ra 546 167 1 1 0 0 0s 100 1 913
ra 549 200 1 1 0 0 0s 100 1 913
ra 549 200 1 1 0 0 0s 100 1 913
ra 551 229 1 1 0 0 0s 100 1 913
ra 551 229 1 1 0 0 0s 100 1 913
ra 550 267 1 1 0 0 0s 100 1 913
ra 550 267 1 1 0 0 0s 100 1 913
ra 582 137 1 1 0 0 0s 100 1 913
ra 582 137 1 1 0 0 0s 100 1 913
ra 582 201 1 1 0 0 0s 100 1 913
ra 586 201 1 1 0 0 0s 100 1 913
ra 613 60 1 1 0 0 0s 100 1 913
ra 613 60 1 1 0 0 0s 100 1 913
ra 617 98 1 1 0 0 0s 100 1 913
ra 617 98 1 1 0 0 0s 100 1 913
ra 619 138 1 1 0 0 0s 100 1 913
ra 619 138 1 1 0 0 0s 100 1 913
ra 620 168 1 1 0 0 0s 100 1 913
ra 620 168 1 1 0 0 0s 100 1 913
ra 623 202 1 1 0 0 0s 100 1 913
ra 623 202 1 1 0 0 0s 100 1 913
ra 627 233 1 1 0 0 0s 100 1 913
ra 627 233 1 1 0 0 0s 100 1 913
ra 624 271 1 1 0 0 0s 100 1 913
ra 624 271 1 1 0 0 0s 100 1 913
// NO9
ra 310 568 1 1 0 0 0s 100 1 914
ra 310 568 1 1 0 0 0s 100 1 914
ra 310 596 1 1 0 0 0s 100 1 914
ra 310 596 1 1 0 0 0s 100 1 914
ra 314 637 1 1 0 0 0s 100 1 914
ra 314 637 1 1 0 0 0s 100 1 914
ra 313 674 1 1 0 0 0s 100 1 914
ra 313 674 1 1 0 0 0s 100 1 914
ra 310 705 1 1 0 0 0s 100 1 914
ra 310 705 1 1 0 0 0s 100 1 914
ra 341 704 1 1 0 0 0s 100 1 914
ra 341 704 1 1 0 0 0s 100 1 914
ra 342 566 1 1 0 0 0s 100 1 914
ra 342 566 1 1 0 0 0s 100 1 914
ra 374 567 1 1 0 0 0s 100 1 914
ra 374 567 1 1 0 0 0s 100 1 914
ra 375 595 1 1 0 0 0s 100 1 914
ra 375 595 1 1 0 0 0s 100 1 914
ra 377 632 1 1 0 0 0s 100 1 914
ra 377 632 1 1 0 0 0s 100 1 914
ra 374 674 1 1 0 0 0s 100 1 914
ra 374 674 1 1 0 0 0s 100 1 914
ra 374 701 1 1 0 0 0s 100 1 914
ra 374 701 1 1 0 0 0s 100 1 914
ra 404 702 1 1 0 0 0s 100 1 914
ra 404 702 1 1 0 0 0s 100 1 914
ra 406 563 1 1 0 0 0s 100 1 914
ra 406 563 1 1 0 0 0s 100 1 914
ra 438 563 1 1 0 0 0s 100 1 914
ra 438 563 1 1 0 0 0s 100 1 914
ra 437 591 1 1 0 0 0s 100 1 914
ra 437 591 1 1 0 0 0s 100 1 914
ra 440 631 1 1 0 0 0s 100 1 914
ra 440 631 1 1 0 0 0s 100 1 914
ra 441 674 1 1 0 0 0s 100 1 914
ra 441 674 1 1 0 0 0s 100 1 914
ra 440 704 1 1 0 0 0s 100 1 914
ra 440 704 1 1 0 0 0s 100 1 914
// boss1
ra 579 376 1 1 0 0 0s 100 1 914
ra 573 367 1 1 0 0 0s 100 1 914
ra 573 355 1 1 0 0 0s 100 1 914
ra 579 343 1 1 0 0 0s 100 1 914
ra 593 344 1 1 0 0 0s 100 1 914
ra 604 355 1 1 0 0 0s 100 1 914
ra 611 368 1 1 0 0 0s 100 1 914
ra 598 381 1 1 0 0 0s 100 1 914
ra 584 365 1 1 0 0 0s 100 1 914
ra 580 356 1 1 0 0 0s 100 1 914
ra 585 348 1 1 0 0 0s 100 1 914
ra 596 353 1 1 0 0 0s 100 1 914
ra 588 358 1 1 0 0 0s 100 1 914
ga 630 489 1 1 0 0 0s 100 1 5018
// ºñ¼®NPC
m 102 748 0 0 0 0 0m 100 1 20360
m 405 702 0 0 0 0 0m 100 1 20361

View File

@ -0,0 +1,269 @@
//type cx cy sx sy z dir time percent count vnum
// NO1
ra 75 162 1 1 0 0 0s 100 1 921
ra 75 162 1 1 0 0 0s 100 1 921
ra 76 197 1 1 0 0 0s 100 1 921
ra 76 197 1 1 0 0 0s 100 1 921
ra 78 234 1 1 0 0 0s 100 1 921
ra 78 234 1 1 0 0 0s 100 1 921
ra 81 272 1 1 0 0 0s 100 1 921
ra 81 272 1 1 0 0 0s 100 1 921
ra 100 213 1 1 0 0 0s 100 1 921
ra 100 213 1 1 0 0 0s 100 1 921
ra 142 216 1 1 0 0 0s 100 1 921
ra 142 216 1 1 0 0 0s 100 1 921
ra 145 244 1 1 0 0 0s 100 1 921
ra 145 244 1 1 0 0 0s 100 1 921
ra 144 277 1 1 0 0 0s 100 1 921
ra 144 277 1 1 0 0 0s 100 1 921
// NO2
ra 239 108 1 1 0 0 0s 100 1 923
ra 239 108 1 1 0 0 0s 100 1 923
ra 278 107 1 1 0 0 0s 100 1 923
ra 278 107 1 1 0 0 0s 100 1 923
ra 301 118 1 1 0 0 0s 100 1 923
ra 301 118 1 1 0 0 0s 100 1 923
ra 300 156 1 1 0 0 0s 100 1 923
ra 300 156 1 1 0 0 0s 100 1 923
ra 281 175 1 1 0 0 0s 100 1 923
ra 281 175 1 1 0 0 0s 100 1 923
ra 237 172 1 1 0 0 0s 100 1 923
ra 237 172 1 1 0 0 0s 100 1 923
ra 228 192 1 1 0 0 0s 100 1 923
ra 228 192 1 1 0 0 0s 100 1 923
ra 228 230 1 1 0 0 0s 100 1 923
ra 228 230 1 1 0 0 0s 100 1 923
ra 252 240 1 1 0 0 0s 100 1 923
ra 252 240 1 1 0 0 0s 100 1 923
ra 289 239 1 1 0 0 0s 100 1 923
ra 289 239 1 1 0 0 0s 100 1 923
// NO3
ra 423 239 1 1 0 0 0s 100 1 921
ra 423 239 1 1 0 0 0s 100 1 921
ra 418 178 1 1 0 0 0s 100 1 921
ra 418 178 1 1 0 0 0s 100 1 921
ra 417 116 1 1 0 0 0s 100 1 921
ra 417 116 1 1 0 0 0s 100 1 921
ra 450 117 1 1 0 0 0s 100 1 921
ra 450 117 1 1 0 0 0s 100 1 921
ra 484 121 1 1 0 0 0s 100 1 921
ra 484 121 1 1 0 0 0s 100 1 921
ra 484 163 1 1 0 0 0s 100 1 921
ra 484 163 1 1 0 0 0s 100 1 921
ra 486 210 1 1 0 0 0s 100 1 921
ra 486 210 1 1 0 0 0s 100 1 921
ra 487 253 1 1 0 0 0s 100 1 921
ra 487 253 1 1 0 0 0s 100 1 921
// NO4
ra 105 370 1 1 0 0 0s 100 1 922
ra 105 370 1 1 0 0 0s 100 1 922
ra 136 367 1 1 0 0 0s 100 1 922
ra 136 367 1 1 0 0 0s 100 1 922
ra 164 372 1 1 0 0 0s 100 1 922
ra 164 372 1 1 0 0 0s 100 1 922
ra 164 400 1 1 0 0 0s 100 1 922
ra 164 400 1 1 0 0 0s 100 1 922
ra 164 434 1 1 0 0 0s 100 1 922
ra 164 434 1 1 0 0 0s 100 1 922
ra 138 428 1 1 0 0 0s 100 1 922
ra 138 428 1 1 0 0 0s 100 1 922
ra 107 435 1 1 0 0 0s 100 1 922
ra 107 435 1 1 0 0 0s 100 1 922
ra 168 462 1 1 0 0 0s 100 1 922
ra 168 462 1 1 0 0 0s 100 1 922
ra 165 496 1 1 0 0 0s 100 1 922
ra 165 496 1 1 0 0 0s 100 1 922
ra 139 496 1 1 0 0 0s 100 1 922
ra 139 496 1 1 0 0 0s 100 1 922
ra 109 499 1 1 0 0 0s 100 1 922
ra 109 499 1 1 0 0 0s 100 1 922
// NO5
ra 319 359 1 1 0 0 0s 100 1 921
ra 319 359 1 1 0 0 0s 100 1 921
ra 283 362 1 1 0 0 0s 100 1 921
ra 283 362 1 1 0 0 0s 100 1 921
ra 251 362 1 1 0 0 0s 100 1 921
ra 251 362 1 1 0 0 0s 100 1 921
ra 251 393 1 1 0 0 0s 100 1 921
ra 251 393 1 1 0 0 0s 100 1 921
ra 252 427 1 1 0 0 0s 100 1 921
ra 252 427 1 1 0 0 0s 100 1 921
ra 281 428 1 1 0 0 0s 100 1 921
ra 281 428 1 1 0 0 0s 100 1 921
ra 310 431 1 1 0 0 0s 100 1 921
ra 310 431 1 1 0 0 0s 100 1 921
ra 310 459 1 1 0 0 0s 100 1 921
ra 310 459 1 1 0 0 0s 100 1 921
ra 310 494 1 1 0 0 0s 100 1 921
ra 310 494 1 1 0 0 0s 100 1 921
ra 279 494 1 1 0 0 0s 100 1 921
ra 279 494 1 1 0 0 0s 100 1 921
ra 243 496 1 1 0 0 0s 100 1 921
ra 243 496 1 1 0 0 0s 100 1 921
// NO6
ra 495 349 1 1 0 0 0s 100 1 922
ra 495 349 1 1 0 0 0s 100 1 922
ra 460 352 1 1 0 0 0s 100 1 922
ra 460 352 1 1 0 0 0s 100 1 922
ra 427 355 1 1 0 0 0s 100 1 922
ra 427 355 1 1 0 0 0s 100 1 922
ra 425 383 1 1 0 0 0s 100 1 922
ra 425 383 1 1 0 0 0s 100 1 922
ra 428 416 1 1 0 0 0s 100 1 922
ra 428 416 1 1 0 0 0s 100 1 922
ra 460 416 1 1 0 0 0s 100 1 922
ra 460 416 1 1 0 0 0s 100 1 922
ra 493 415 1 1 0 0 0s 100 1 922
ra 493 415 1 1 0 0 0s 100 1 922
ra 429 449 1 1 0 0 0s 100 1 922
ra 429 449 1 1 0 0 0s 100 1 922
ra 431 482 1 1 0 0 0s 100 1 922
ra 431 482 1 1 0 0 0s 100 1 922
ra 461 482 1 1 0 0 0s 100 1 922
ra 461 482 1 1 0 0 0s 100 1 922
ra 494 482 1 1 0 0 0s 100 1 922
ra 494 482 1 1 0 0 0s 100 1 922
// NO7
ra 128 549 1 1 0 0 0s 100 1 923
ra 128 549 1 1 0 0 0s 100 1 923
ra 166 549 1 1 0 0 0s 100 1 923
ra 166 549 1 1 0 0 0s 100 1 923
ra 194 551 1 1 0 0 0s 100 1 923
ra 194 551 1 1 0 0 0s 100 1 923
ra 195 579 1 1 0 0 0s 100 1 923
ra 195 579 1 1 0 0 0s 100 1 923
ra 195 615 1 1 0 0 0s 100 1 923
ra 195 615 1 1 0 0 0s 100 1 923
ra 160 614 1 1 0 0 0s 100 1 923
ra 160 614 1 1 0 0 0s 100 1 923
ra 125 614 1 1 0 0 0s 100 1 923
ra 125 614 1 1 0 0 0s 100 1 923
ra 123 647 1 1 0 0 0s 100 1 923
ra 123 647 1 1 0 0 0s 100 1 923
ra 123 677 1 1 0 0 0s 100 1 923
ra 123 677 1 1 0 0 0s 100 1 923
ra 151 681 1 1 0 0 0s 100 1 923
ra 151 681 1 1 0 0 0s 100 1 923
ra 183 683 1 1 0 0 0s 100 1 923
ra 183 683 1 1 0 0 0s 100 1 923
ra 182 713 1 1 0 0 0s 100 1 923
ra 182 713 1 1 0 0 0s 100 1 923
ra 183 746 1 1 0 0 0s 100 1 923
ra 183 746 1 1 0 0 0s 100 1 923
ra 148 747 1 1 0 0 0s 100 1 923
ra 148 747 1 1 0 0 0s 100 1 923
ra 115 747 1 1 0 0 0s 100 1 923
ra 115 747 1 1 0 0 0s 100 1 923
// NO8
ra 538 57 1 1 0 0 0s 100 1 922
ra 538 57 1 1 0 0 0s 100 1 922
ra 539 79 1 1 0 0 0s 100 1 922
ra 539 79 1 1 0 0 0s 100 1 922
ra 545 136 1 1 0 0 0s 100 1 922
ra 545 136 1 1 0 0 0s 100 1 922
ra 546 167 1 1 0 0 0s 100 1 922
ra 546 167 1 1 0 0 0s 100 1 922
ra 549 200 1 1 0 0 0s 100 1 922
ra 549 200 1 1 0 0 0s 100 1 922
ra 551 229 1 1 0 0 0s 100 1 922
ra 551 229 1 1 0 0 0s 100 1 922
ra 550 267 1 1 0 0 0s 100 1 922
ra 550 267 1 1 0 0 0s 100 1 922
ra 582 137 1 1 0 0 0s 100 1 922
ra 582 137 1 1 0 0 0s 100 1 922
ra 582 201 1 1 0 0 0s 100 1 922
ra 586 201 1 1 0 0 0s 100 1 922
ra 613 60 1 1 0 0 0s 100 1 922
ra 613 60 1 1 0 0 0s 100 1 922
ra 617 98 1 1 0 0 0s 100 1 922
ra 617 98 1 1 0 0 0s 100 1 922
ra 619 138 1 1 0 0 0s 100 1 922
ra 619 138 1 1 0 0 0s 100 1 922
ra 620 168 1 1 0 0 0s 100 1 922
ra 620 168 1 1 0 0 0s 100 1 922
ra 623 202 1 1 0 0 0s 100 1 922
ra 623 202 1 1 0 0 0s 100 1 922
ra 627 233 1 1 0 0 0s 100 1 922
ra 627 233 1 1 0 0 0s 100 1 922
ra 624 271 1 1 0 0 0s 100 1 922
ra 624 271 1 1 0 0 0s 100 1 922
// NO9
ra 310 568 1 1 0 0 0s 100 1 923
ra 310 568 1 1 0 0 0s 100 1 923
ra 310 596 1 1 0 0 0s 100 1 923
ra 310 596 1 1 0 0 0s 100 1 923
ra 314 637 1 1 0 0 0s 100 1 923
ra 314 637 1 1 0 0 0s 100 1 923
ra 313 674 1 1 0 0 0s 100 1 923
ra 313 674 1 1 0 0 0s 100 1 923
ra 310 705 1 1 0 0 0s 100 1 923
ra 310 705 1 1 0 0 0s 100 1 923
ra 341 704 1 1 0 0 0s 100 1 923
ra 341 704 1 1 0 0 0s 100 1 923
ra 342 566 1 1 0 0 0s 100 1 923
ra 342 566 1 1 0 0 0s 100 1 923
ra 374 567 1 1 0 0 0s 100 1 923
ra 374 567 1 1 0 0 0s 100 1 923
ra 375 595 1 1 0 0 0s 100 1 923
ra 375 595 1 1 0 0 0s 100 1 923
ra 377 632 1 1 0 0 0s 100 1 923
ra 377 632 1 1 0 0 0s 100 1 923
ra 374 674 1 1 0 0 0s 100 1 923
ra 374 674 1 1 0 0 0s 100 1 923
ra 374 701 1 1 0 0 0s 100 1 923
ra 374 701 1 1 0 0 0s 100 1 923
ra 404 702 1 1 0 0 0s 100 1 923
ra 404 702 1 1 0 0 0s 100 1 923
ra 406 563 1 1 0 0 0s 100 1 923
ra 406 563 1 1 0 0 0s 100 1 923
ra 438 563 1 1 0 0 0s 100 1 923
ra 438 563 1 1 0 0 0s 100 1 923
ra 437 591 1 1 0 0 0s 100 1 923
ra 437 591 1 1 0 0 0s 100 1 923
ra 440 631 1 1 0 0 0s 100 1 923
ra 440 631 1 1 0 0 0s 100 1 923
ra 441 674 1 1 0 0 0s 100 1 923
ra 441 674 1 1 0 0 0s 100 1 923
ra 440 704 1 1 0 0 0s 100 1 923
ra 440 704 1 1 0 0 0s 100 1 923
// boss1
ra 579 376 1 1 0 0 0s 100 1 923
ra 573 367 1 1 0 0 0s 100 1 923
ra 573 355 1 1 0 0 0s 100 1 923
ra 579 343 1 1 0 0 0s 100 1 923
ra 593 344 1 1 0 0 0s 100 1 923
ra 604 355 1 1 0 0 0s 100 1 923
ra 611 368 1 1 0 0 0s 100 1 923
ra 598 381 1 1 0 0 0s 100 1 923
ra 584 365 1 1 0 0 0s 100 1 923
ra 580 356 1 1 0 0 0s 100 1 923
ra 585 348 1 1 0 0 0s 100 1 923
ra 596 353 1 1 0 0 0s 100 1 923
ra 588 358 1 1 0 0 0s 100 1 923
// boss2
ra 612 558 1 1 0 0 0s 100 1 924
ra 627 557 1 1 0 0 0s 100 1 924
ra 608 546 1 1 0 0 0s 100 1 924
ra 619 548 1 1 0 0 0s 100 1 924
ra 635 549 1 1 0 0 0s 100 1 924
ra 637 355 1 1 0 0 0s 100 1 924
ra 611 556 1 1 0 0 0s 100 1 924
ra 644 543 1 1 0 0 0s 100 1 924
ra 649 552 1 1 0 0 0s 100 1 924
ra 661 549 1 1 0 0 0s 100 1 924
ra 659 538 1 1 0 0 0s 100 1 924
ra 644 537 1 1 0 0 0s 100 1 924
ra 631 540 1 1 0 0 0s 100 1 924
ra 614 535 1 1 0 0 0s 100 1 924
ra 608 536 1 1 0 0 0s 100 1 924
ra 630 518 1 1 0 0 0s 100 1 924
ra 619 515 1 1 0 0 0s 100 1 924
ra 642 516 1 1 0 0 0s 100 1 924
ra 608 516 1 1 0 0 0s 100 1 924
ra 653 514 1 1 0 0 0s 100 1 924
ra 630 506 1 1 0 0 0s 100 1 924
ra 630 495 1 1 0 0 0s 100 1 924
ra 619 494 1 1 0 0 0s 100 1 924
ra 640 493 1 1 0 0 0s 100 1 924
ga 630 489 1 1 0 0 1800s 100 1 5029

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/front_damage.GR2"
MotionDuration 0.833333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/front_dead.GR2"
MotionDuration 1.833333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/front_knockdown.GR2"
MotionDuration 1.066667
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/front_standup.GR2"
MotionDuration 1.500000
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,12 @@
GENERAL WAIT wait.msa 100
GENERAL RUN run.msa 100
GENERAL NORMAL_ATTACK normal_attack1.msa 50
GENERAL NORMAL_ATTACK1 normal_attack2.msa 50
GENERAL SPECIAL special_attack1.msa 30
GENERAL SPECIAL1 special_attack2.msa 30
GENERAL SPECIAL2 special_attack3.msa 40
GENERAL FRONT_DAMAGE front_damage.msa 100
GENERAL FRONT_DEAD front_dead.msa 100
GENERAL FRONT_KNOCKDOWN front_knockdown.msa 100
GENERAL FRONT_STANDUP front_standup.msa 100
GENERAL WALK run.msa 100

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/normal_attack1.GR2"
MotionDuration 1.500000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 0.591241
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 250.000000
Position 0.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/normal_attack2.GR2"
MotionDuration 1.500000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 0.427007
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 250.000000
Position 0.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/run.GR2"
MotionDuration 1.000000
Accumulation 0.00 -600.00 0.00

View File

@ -0,0 +1,109 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/special_attack1.GR2"
MotionDuration 2.300000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 6
Group Event00
{
MotionEventType 1
StartingTime 1.343066
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_chi_s1_impact01.mse"
EffectPosition 0.000000 0.000000 0.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.331873
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_rbt_s01_wind.mse"
EffectPosition 0.000000 0.000000 200.000000
}
Group Event02
{
MotionEventType 2
StartingTime 1.359854
DuringTime 0.200000
Power 300
AffectingRange 400
}
Group Event03
{
MotionEventType 4
StartingTime 1.203163
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 300.000000
Position 0.000000 -100.000000 0.000000
}
}
Group Event04
{
MotionEventType 4
StartingTime 1.231144
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -500.000000 0.000000
}
}
Group Event05
{
MotionEventType 4
StartingTime 1.253528
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -1000.000000 0.000000
}
}
}

View File

@ -0,0 +1,65 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/special_attack2.GR2"
MotionDuration 2.833333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 4
Group Event00
{
MotionEventType 1
StartingTime 0.000000
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_chi_s2_making.mse"
EffectPosition 0.000000 0.000000 200.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.178832
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_chi_s2_blow.mse"
EffectPosition 0.000000 0.000000 200.000000
}
Group Event02
{
MotionEventType 2
StartingTime 1.165045
DuringTime 0.200000
Power 300
AffectingRange 200
}
Group Event03
{
MotionEventType 4
StartingTime 1.253528
DuringTime 0.000000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.000000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 300.000000
Position 0.000000 -800.000000 0.000000
}
}
}

View File

@ -0,0 +1,131 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/special_attack3.GR2"
MotionDuration 2.500000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 7
Group Event00
{
MotionEventType 1
StartingTime 0.036496
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_chi_s3_making.mse"
EffectPosition 0.000000 -30.000000 200.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.423358
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_chi_s3_blow.mse"
EffectPosition 0.000000 0.000000 200.000000
}
Group Event02
{
MotionEventType 2
StartingTime 1.411192
DuringTime 0.200000
Power 300
AffectingRange 200
}
Group Event03
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -900.000000 300.000000
}
}
Group Event04
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -450.000000 300.000000
}
}
Group Event05
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -900.000000 300.000000
}
}
Group Event06
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -450.000000 300.000000
}
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_chicken_boss/wait.GR2"
MotionDuration 1.666667
Accumulation 0.00 -1.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/front_damage.GR2"
MotionDuration 1.000000
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/front_dead.GR2"
MotionDuration 3.333333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/front_knockdown.GR2"
MotionDuration 1.066667
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/front_standup.GR2"
MotionDuration 1.666667
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,12 @@
GENERAL WAIT wait.msa 100
GENERAL RUN run.msa 100
GENERAL NORMAL_ATTACK normal_attack1.msa 50
GENERAL NORMAL_ATTACK1 normal_attack2.msa 50
GENERAL SPECIAL special_attack1.msa 30
GENERAL SPECIAL1 special_attack2.msa 30
GENERAL SPECIAL2 special_attack3.msa 40
GENERAL FRONT_DAMAGE front_damage.msa 100
GENERAL FRONT_DEAD front_dead.msa 100
GENERAL FRONT_KNOCKDOWN front_knockdown.msa 100
GENERAL FRONT_STANDUP front_standup.msa 100
GENERAL WALK run.msa 100

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/normal_attack1.GR2"
MotionDuration 1.833333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 0.999189
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 350.000000
Position -50.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/normal_attack2.GR2"
MotionDuration 1.666667
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 0.908354
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 350.000000
Position 0.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/run.GR2"
MotionDuration 1.200000
Accumulation 0.00 -500.00 0.00

View File

@ -0,0 +1,119 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/special_attack1.GR2"
MotionDuration 2.333333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 6
Group Event00
{
MotionEventType 1
StartingTime 1.379156
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s1_blow.mse"
EffectPosition 0.000000 -500.000000 0.000000
}
Group Event01
{
MotionEventType 2
StartingTime 1.368612
DuringTime 0.200000
Power 600
AffectingRange 500
}
Group Event02
{
MotionEventType 4
StartingTime 1.263179
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -200.000000 0.000000
}
}
Group Event03
{
MotionEventType 4
StartingTime 1.289537
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -700.000000 0.000000
}
}
Group Event04
{
MotionEventType 4
StartingTime 1.315896
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -1200.000000 0.000000
}
}
Group Event05
{
MotionEventType 4
StartingTime 1.336982
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -1700.000000 0.000000
}
}
}

View File

@ -0,0 +1,65 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/special_attack2.GR2"
MotionDuration 2.533333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 4
Group Event00
{
MotionEventType 1
StartingTime 1.579562
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s2_impact01.mse"
EffectPosition 0.000000 0.000000 0.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.607948
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s2_blow.mse"
EffectPosition 0.000000 -300.000000 50.000000
}
Group Event02
{
MotionEventType 2
StartingTime 1.596594
DuringTime 0.200000
Power 300
AffectingRange 200
}
Group Event03
{
MotionEventType 4
StartingTime 1.437632
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -400.000000 0.000000
}
}
}

View File

@ -0,0 +1,77 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/special_attack3.GR2"
MotionDuration 4.000000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 5
Group Event00
{
MotionEventType 1
StartingTime 2.364964
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s3_blow.mse"
EffectPosition 0.000000 30.000000 300.000000
}
Group Event01
{
MotionEventType 1
StartingTime 0.058394
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s3_making.mse"
EffectPosition 0.000000 -30.000000 200.000000
}
Group Event02
{
MotionEventType 2
StartingTime 2.345499
DuringTime 2.500000
Power 300
AffectingRange 800
}
Group Event03
{
MotionEventType 1
StartingTime 2.403893
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Toe0"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_cow_s3_stone.mse"
EffectPosition 0.000000 0.000000 0.000000
}
Group Event04
{
MotionEventType 4
StartingTime 2.306569
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 600.000000
Position 0.000000 0.000000 0.000000
}
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_cow_boss/wait.GR2"
MotionDuration 2.000000
Accumulation 0.00 -1.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/front_damage.GR2"
MotionDuration 0.833333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/front_dead.GR2"
MotionDuration 2.166667
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/front_knockdown.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/front_Standup.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,12 @@
GENERAL WAIT wait.msa 100
GENERAL RUN run.msa 100
GENERAL NORMAL_ATTACK normal_attack1.msa 50
GENERAL NORMAL_ATTACK1 normal_attack2.msa 50
GENERAL SPECIAL special_attack1.msa 30
GENERAL SPECIAL1 special_attack2.msa 30
GENERAL SPECIAL2 special_attack3.msa 40
GENERAL FRONT_DAMAGE front_damage.msa 100
GENERAL FRONT_DEAD front_dead.msa 100
GENERAL FRONT_KNOCKDOWN front_knockdown.msa 100
GENERAL FRONT_STANDUP front_standup.msa 100
GENERAL WALK run.msa 100

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/normal_attack1.GR2"
MotionDuration 1.666667
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 1.005677
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 300.000000
Position 0.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/normal_attack2.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 1
Group Event00
{
MotionEventType 4
StartingTime 0.519059
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 300.000000
Position 0.000000 -300.000000 50.000000
}
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/run.GR2"
MotionDuration 0.800000
Accumulation 0.00 -797.48 0.00

View File

@ -0,0 +1,205 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/special_attack1.GR2"
MotionDuration 2.733333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 14
Group Event00
{
MotionEventType 1
StartingTime 1.199919
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition 150.000000 0.000000 300.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.383455
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition -250.000000 0.000000 400.000000
}
Group Event02
{
MotionEventType 1
StartingTime 1.566991
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition -200.000000 0.000000 200.000000
}
Group Event03
{
MotionEventType 1
StartingTime 1.809732
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition 200.000000 0.000000 200.000000
}
Group Event04
{
MotionEventType 1
StartingTime 1.886699
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition 300.000000 0.000000 400.000000
}
Group Event05
{
MotionEventType 1
StartingTime 1.294647
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition 150.000000 0.000000 100.000000
}
Group Event06
{
MotionEventType 1
StartingTime 1.726845
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition -100.000000 0.000000 100.000000
}
Group Event07
{
MotionEventType 1
StartingTime 1.478183
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition -100.000000 0.000000 400.000000
}
Group Event08
{
MotionEventType 1
StartingTime 1.638037
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_head.mse"
EffectPosition 100.000000 0.000000 450.000000
}
Group Event09
{
MotionEventType 1
StartingTime 1.122952
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s1_smoke.mse"
EffectPosition 0.000000 -100.000000 200.000000
}
Group Event10
{
MotionEventType 2
StartingTime 1.117032
DuringTime 1.000000
Power 300
AffectingRange 200
}
Group Event11
{
MotionEventType 4
StartingTime 1.170316
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -100.000000 200.000000
}
}
Group Event12
{
MotionEventType 4
StartingTime 1.229522
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -600.000000 200.000000
}
}
Group Event13
{
MotionEventType 4
StartingTime 1.330170
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -1100.000000 200.000000
}
}
}

View File

@ -0,0 +1,53 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/special_attack2.GR2"
MotionDuration 2.700000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 3
Group Event00
{
MotionEventType 1
StartingTime 1.714599
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s2_blow.mse"
EffectPosition 0.000000 -500.000000 0.000000
}
Group Event01
{
MotionEventType 2
StartingTime 1.732847
DuringTime 0.200000
Power 300
AffectingRange 200
}
Group Event02
{
MotionEventType 4
StartingTime 1.684185
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -400.000000 0.000000
}
}
}

View File

@ -0,0 +1,65 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/special_attack3.GR2"
MotionDuration 3.833333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 4
Group Event00
{
MotionEventType 1
StartingTime 1.949311
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s3_blow.mse"
EffectPosition 0.000000 0.000000 0.000000
}
Group Event01
{
MotionEventType 2
StartingTime 1.930657
DuringTime 3.000000
Power 200
AffectingRange 200
}
Group Event02
{
MotionEventType 4
StartingTime 1.902676
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 800.000000
Position 0.000000 0.000000 0.000000
}
}
Group Event03
{
MotionEventType 1
StartingTime 0.055961
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "12zi_dog_boss1_wp"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dog_s3_making.mse"
EffectPosition 0.000000 50.000000 250.000000
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dog_boss/wait.GR2"
MotionDuration 1.666667
Accumulation 0.00 -1.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/front_damage.GR2"
MotionDuration 0.833333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/front_dead.GR2"
MotionDuration 3.500000
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/front_knockdown.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/front_Standup.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00

View File

@ -0,0 +1,12 @@
GENERAL WAIT wait.msa 100
GENERAL RUN run.msa 100
GENERAL NORMAL_ATTACK normal_attack1.msa 50
GENERAL NORMAL_ATTACK1 normal_attack2.msa 50
GENERAL SPECIAL special_attack1.msa 30
GENERAL SPECIAL1 special_attack2.msa 30
GENERAL SPECIAL2 special_attack3.msa 40
GENERAL FRONT_DAMAGE front_damage.msa 100
GENERAL FRONT_DEAD front_dead.msa 100
GENERAL FRONT_KNOCKDOWN front_knockdown.msa 100
GENERAL FRONT_STANDUP front_standup.msa 100
GENERAL WALK run.msa 100

View File

@ -0,0 +1,32 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/normal_attack1.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 2
Group Event00
{
MotionEventType 1
StartingTime 0.570965
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "Bone09_weapon"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_n1_making.mse"
EffectPosition 0.000000 -220.000000 0.000000
}
Group Event01
{
MotionEventType 6
StartingTime 0.570965
AttachingEnable 1
AttachingBoneName "Bone09_weapon"
FlyFileName "d:/ymir work/effect/monster2/12_dra_n1_elec.msf"
FlyPosition 0.000000 -220.000000 0.000000
}
}

View File

@ -0,0 +1,41 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/normal_attack2.GR2"
MotionDuration 1.333333
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 3
Group Event00
{
MotionEventType 1
StartingTime 0.853204
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "Bone09_weapon"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_n1_making.mse"
EffectPosition 0.000000 -250.000000 -20.000000
}
Group Event01
{
MotionEventType 2
StartingTime 0.846715
DuringTime 0.200000
Power 200
AffectingRange 200
}
Group Event02
{
MotionEventType 6
StartingTime 0.853204
AttachingEnable 1
AttachingBoneName "Bone09_weapon"
FlyFileName "d:/ymir work/effect/monster2/12_dra_n1_elec.msf"
FlyPosition 0.000000 -250.000000 -20.000000
}
}

View File

@ -0,0 +1,6 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/run.GR2"
MotionDuration 0.800000
Accumulation 0.00 -800.00 0.00

View File

@ -0,0 +1,155 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/special_attack1.GR2"
MotionDuration 2.000000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 9
Group Event00
{
MotionEventType 1
StartingTime 0.291971
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s1_making2.mse"
EffectPosition 0.000000 -300.000000 300.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.352798
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s1_throw.mse"
EffectPosition 0.000000 -300.000000 300.000000
}
Group Event02
{
MotionEventType 2
StartingTime 1.372263
DuringTime 0.100000
Power 300
AffectingRange 200
}
Group Event03
{
MotionEventType 1
StartingTime 1.338199
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s1_blow.mse"
EffectPosition 0.000000 -300.000000 300.000000
}
Group Event04
{
MotionEventType 1
StartingTime 0.019465
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s1_making.mse"
EffectPosition 0.000000 -300.000000 300.000000
}
Group Event05
{
MotionEventType 4
StartingTime 1.250608
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -200.000000 200.000000
}
}
Group Event06
{
MotionEventType 4
StartingTime 1.270073
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -800.000000 200.000000
}
}
Group Event07
{
MotionEventType 4
StartingTime 1.284672
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -1400.000000 200.000000
}
}
Group Event08
{
MotionEventType 4
StartingTime 1.299272
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 400.000000
Position 0.000000 -2000.000000 200.000000
}
}
}

View File

@ -0,0 +1,203 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/special_attack2.GR2"
MotionDuration 2.500000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 13
Group Event00
{
MotionEventType 1
StartingTime 0.517032
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_bead.mse"
EffectPosition 0.000000 -150.000000 700.000000
}
Group Event01
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event02
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead04"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event03
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead02"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event04
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead03"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event05
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead05"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event06
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead06"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event07
{
MotionEventType 1
StartingTime 1.642336
IndependentFlag 0
AttachingEnable 1
AttachingBoneName "bead07"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s2_throw.mse"
EffectPosition 0.000000 0.000000 -300.000000
}
Group Event08
{
MotionEventType 2
StartingTime 1.660584
DuringTime 0.100000
Power 300
AffectingRange 500
}
Group Event09
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -450.000000 300.000000
}
}
Group Event10
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -900.000000 300.000000
}
}
Group Event11
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -450.000000 300.000000
}
}
Group Event12
{
MotionEventType 4
StartingTime 1.914761
DuringTime 0.200000
EnableHitProcess 0
AttackType 0
HittingType 0
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 500.000000
Position 0.000000 -900.000000 300.000000
}
}
}

View File

@ -0,0 +1,65 @@
ScriptType MotionData
MotionFileName "D:/Ymir Work/monster2/12zi_dragon_boss/special_attack3.GR2"
MotionDuration 3.000000
Accumulation 0.00 0.00 0.00
Group MotionEventData
{
MotionEventDataCount 4
Group Event00
{
MotionEventType 1
StartingTime 1.569343
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_dra_s3_blow.mse"
EffectPosition 100.000000 -100.000000 30.000000
}
Group Event01
{
MotionEventType 2
StartingTime 1.591241
DuringTime 0.200000
Power 300
AffectingRange 200
}
Group Event02
{
MotionEventType 1
StartingTime 0.058394
IndependentFlag 0
AttachingEnable 0
AttachingBoneName "Bip01 L Finger01"
FollowingEnable 0
EffectFileName "d:/ymir work/effect/monster2/12_she_s3_recall.mse"
EffectPosition 0.000000 0.000000 200.000000
}
Group Event03
{
MotionEventType 4
StartingTime 1.437956
DuringTime 0.200000
EnableHitProcess 1
AttackType 0
HittingType 1
StiffenTime 0.000000
InvisibleTime 0.300000
ExternalForce 0.000000
HitLimitCount 0
CollisionType 4
SphereDataCount 1
Group SphereData00
{
Radius 600.000000
Position 0.000000 -100.000000 0.000000
}
}
}

Some files were not shown because too many files have changed in this diff Show More