Commit d155915a authored by Nemo Ma's avatar Nemo Ma Committed by GitHub

Merge pull request #79 from clean-master/update-botservice

update botservice
parents 425baf7c a5d0a42b
@echo off
set BOT_CD=0.5
set BOT_CD=1
cd ..
:loop
php bot/revbotservice.php
timeout /t %BOT_CD%
goto loop
\ No newline at end of file
goto loop
@ECHO OFF
SET /a RepeatTimes=5
FOR /L %%G IN (1,1,%RepeatTimes%) DO START "Batch_Process_%%G" cmd /c "bot_enable.bat"
ECHO Batch processes started.
PAUSE
\ No newline at end of file
#!/bin/bash
count=5
for i in $(seq 1 $count)
do
sh ./bot_enbale.sh &
done
wait
\ No newline at end of file
<?php
define('CURSCRIPT', 'revbotservice');
include './include/common.inc.php';
include GAME_ROOT.'./include/game.func.php';
include GAME_ROOT.'./bot/revbot.func.php';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment