• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Avesta auto restarter

oldtimes

Member
Joined
Jan 21, 2013
Messages
311
Reaction score
23
I have a auto restarter for my Avesta engine.
It is supposed to restart the server if it crash.

This is how the code looks:
Code:
echo off
title Tibia Server
color 80
cls
:controllerini
Avesta.exe
echo ~~
echo BOOM! Server crashed!
goto :controllerini


Problem is that it doesn't restart when a crash happens.
I get a message saying that Avesta has crashed and i can choose to "Search for the problem" or "Close".
After i pressed "Close" it does restart Avesta.

What is the problem? I want it to restart automaticly even if im not at the server?
 
use this:

@echo off
title Auto OTServ Restarter
echo :: =========================================
echo :: --- Auto OTServ Online ---
echo :: --- YourOT ---
echo :: =========================================
echo ::
:begin
TheForgottenServer.exe
echo ::
echo :: =========================================
echo :: --- YourOT ---
echo :: =========================================
echo ::
goto begin
:goto begin

Save STARTOT.BAT and open! (:
 
Back
Top