IPB

Welcome Guest ( Log In | Register )

> Attention / Bitte beachten


If you're asking for a clan-registritation, please provide us with following details:
- clantag without color-codes
- clantag with color-codes
- link to your registered/reserved player nick or the player who should be assigned to this tag

Rules:
- only one clan per user (which means: no second squads, no second funclans, no second clans)
- the registered/reserved playername has to be used at least 5 hours (5 hours playtime!)
- the playername has to contain the clantag
- the clantag has to contain 3 letters/numbers excluding spacebar

» further information
Wenn ihr Hilfe bei der Registrierung eines neuen Clantags benötigt, brauchen wir unbedingt folgende Details:
- Clantag ohne Farbcodes
- Clantag mit Farbcodes
- Link zu eurem registrierten/reservierten Spielernamen oder dem Spieler, der diesem Clan zugefügt werden soll.

Regeln:
- Nur ein Clan pro User (was bedeuted: keine zweiten Squads, keinen zweiten Funclan, keinen zweiten Clan!)
- Der registrierte/reservierte Spielername muss bereits eine Spielzeit von mindestens 5 Stunden haben
- Der Spielername muss den Clantag beinhalten
- Der Clantag muss aus mindestens 3 Zeichen/Buchstaben ohne Leerzeichen bestehen

» weitere Informationen
> Omni-Bot 0.81, XPSave
Bojan Radivojevi...
post Nov 21 2012, 02:08 PM
Post #1


Group Icon Private 1st Class

Group: Members

Joined: 30-August 07
Member No.: 58653



Hallo...

Ich brauche hilfe bei Omni-Bot 0.81.

Auf meinem locahost server lauft jaymod 2.2.0 XPSave ist aktiv, nur bei Bots (Omni-Bot 0.81) wird XPSave nicht gespeichert.
Wo muss ich das aktivieren das die Bots XPSave behalten.. bash.gif
Go to the top of the page
 
+Quote Post
 
Start new topic
Replies
Bojan Radivojevi...
post Nov 21 2012, 05:07 PM
Post #2


Group Icon Private 1st Class

Group: Members

Joined: 30-August 07
Member No.: 58653



Danke dir StoerFaktoR für das schnelle antwort.

Ah ja das hir habe ich in omni-bot/et/user gefunden.

[Debug]
DumpFileEnable = true
DumpFileDialog = true

[Script]
Debug = true
EnableRemoteDebugger = false
LiveUpdate = false

[Debug Render]
EnableInterProcess = true

[Downloader]
Server =
Script =
DownloadMissingNav = false

[ServerManager]
MaxBots = 30
BalanceTeams = 0
SaveConfigChanges = 1
CountSpectators = 0
SleepBots = 0
MinBots = -1
InitialDelayTime = 2.1

[Difficulty]
CurrentDifficulty = 3
AdjustAim = 1

[CombatMovement]
moveskill = 3

[HeavyWeapons]
MinPlayersForMortar = -1
MinPlayersForMobileMG = -1

[Log]
LogInfo = false
LogWarnings = false
LogErrors = true
LogCriticalErrors = true

[Debug Window]
ShowConsole = false
ShowGoals = false
ShowProfiler = false
ShowMap = false
ShowStateTree = false
ShowLog = false
ShowScript = false
ShowHud = false
ShowNav = false

[XP]
Reset = -1
Max = 10000

[FireTeam]
enabled = 0

[Versus]
BotTeam = -1
HumanTeam = 1
BotsPerHuman = 3

[RemoteWindow]
Enabled = 0
Port = 53000
*****************************************************************
Und das hir..

this.Name = "ResetXP";
this.Parent = "LowLevel";
this.GetPriorityDelay = 180;
this.EnableXPReset = ConfigGet("XP","Reset", -1);
this.BotMaxXP = ConfigGet("XP","Max", 10000);

this.GetPriority = function()
{
while(1)
{
if ( this.EnableXPReset > 0 )
{
botXP = GetEntityStat(this.Bot.GetGameEntity(), "xp");

if ( botXP >= this.BotMaxXP )
{
this.Bot.Say("!resetmyxp");
}
}

sleep(this.GetPriorityDelay);
}
};

////////////////////////////////////////////////////////////////////

this.Commands["resetxp"] =
{
Func = function( _params )
{
resetXP = ToInt(_params[0], 1);

if ( resetXP )
{
ConfigSet("XP","Reset", resetXP);
this.EnableXPReset = resetXP;
print("resetxp set to", resetXP);
}
else
{
print("use -1 to disable");
}
},

Help =
{
"enables bots resetting xp. use -1 to disable",
},
};

this.Commands["maxxp"] =
{
Func = function( _params )
{
maxXP = ToInt(_params[0], 10000);

if ( maxXP > 0 )
{
ConfigSet("XP","Max", maxXP);
this.BotMaxXP = maxXP;
print("resetxp set to", maxXP);
}
else
{
print("max xp must be greater than 0");
}
},

Help =
{
"max xp before bots should reset.",
},
};
Go to the top of the page
 
+Quote Post

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



RSS Lo-Fi Version Time is now: 1st July 2025 - 02:46 PM