|
沙发
![](static/image/common/ico_lz.png)
楼主 |
发表于 2014-6-21 13:01:54
|
只看该作者
下面这段可以不改 但我的为了游戏中的简洁就修改为了
///////////////////////////////////////
// Message Settings: // // These controll what your bot sais to the leechers will also send a log incommand to a channel bot
///////////////////////////////////////
var chatMessageOnJoin = \"\"; // Chat Message to say Login command for channel bot will only be sent once
var chatMessageAfterGame1 = \"\"; // Optional chat message Line #1 to say after each game on Channel
var chatMessageAfterGame2 = \"\"; // Optional chat message Line #2 to say after each game on Channel
var chatMessageAfterGame3 = \"\"; // Optional chat message Line #3 to say after each game on Channel
var chatMessageAfterGame4 = \"\"; // Optional chat message Line #4 to say after each game on Channel
var chatMessageAfterGame5 = \"\"; // Optional chat message Line #5 to say after each game on Channel
下面这段不改,等级差当然越高越好咯,因为在等级差范围内的才可以组队。
///////////////////////////////////////////////////
// characters in your game setting: //
///////////////////////////////////////////////////
var characterdiff = \"99\"; //use this to keep those pesky spam bots out of the f\'ing game
//note you must manually hit the check box the first time for this to work
var maxNumberOfPlayersss = \"8\"; //use this to set the maximum number of players allowed in your game
至此该leader文件就修改好了,下面修改 LeechStarter2.2.ntj 文件:找到并修改为
var leecher1 = [\"annei-nec\", 100];(填自己需要跟随的小号)
var leecher2 = [\"characterName\", 750];
var leecher3 = [\"characterName\", 1250];
var leecher4 = [\"characterName\", 2000];
////////////////////////////////////////////////////////////////////////////////
// Lobby chat settings :
////////////////////////////////////////////////////////////////////////////////
// Set to true to join the chat after each game (needed for JoinBot)
var joinChatAfterGame = true;(必填true)
// if this is true, will join a random channel, otherwise it will use the channel below..
var joinRandomChannel = false;(必填false)
// Name of the channel you want to join (leave blank if you want to stay in the default channel)
var joinChannelInChat = \"cn\";(和上面的leader文件中设置自己喜欢的频道的名字必须相同)
下面这段可以不改,也可以改动它,看自己喜号了,我简单作个解释
//==============================================================================
// join options
//==============================================================================
var useFL = false; // 是否使用/f l加入游戏,即用好友列表里的数据加入
var useFLCount = 1; // 在大厅内重复打/f l的次数
var delayFL = 3000; // milliseconds before the bot will use the /f l command in loby
var reEnterSameGame = false; // 意外退出游戏,是否重新加入
var useTextFileJoin = false; // 是否读txt文件加入游戏
var gameDoesNotExistDelay = 10; // time to idle before trying if leader\'s game does not exist. In seconds.
var tryLeaderGame1x = false; // will only try to enter the game one time. Good for when leader drops before leecher gets in.
// =============================================================================
// Game password (leave blank if none)
// =============================================================================
var gamepassword = \"\";(游戏房间密码)
下面设置最重要的两个char的文件了:
先打开小号的角色配置文件,如我的annei-nec的文件 NTConfig_Necromancer_annei-nec.ntl:找到并改为
//------------------------------------------------------------------------------
// Leech, Leech Fighter & Team Botting Settings
//------------------------------------------------------------------------------
NTConfig_Leader = \"Linna \"; // 这儿写带队的大号的角色名字,如我的是Linna
NTConfig_PartyOnlyLeader = false; // 是否只和大号组队
NTConfig_PartyMaxTime = 20; // 和大号组队的最长时间,超出这个时间后游戏就退出,以时间单位分计算。
NTConfig_LeechBo = false; // Set false to disable BO & BC cast by leecher.
NTConfig_LeechExitDelay = 500; // Delay before leecher exits game after leader in milliseconds. Use this to stagger leechers exit times to avoid crashes
下面的是任务进大号门的设定,我以kill diablo为例:
NTConfig_Script.push(\"NTDiabloLeechFight.ntj\"); // (NTConfig_Leader must be configured above).
NTConfig_LeechFrom = \"S\"; // (E)ntrance | (S)tar (Must match leader\'s setting).
NTConfig_TakeTpDiablo = \"TP in\"; // 这儿的口令必须和大号设定的口令一致,且和kille baal的口令必须不同,区分大小写的,如我的设为TP in,在配置大号文件时还有用,所以请记住它)
NTConfig_UseChatCommandPortal = true; // Use portal after TakeTpDiablo message? (False will attempt taking first TP made by leader, ignores TakeTpDiablo.)
注意了//------------------------------------------------------------------------------
// Leech, Leech Fighter & Team Botting Settings
//------------------------------------------------------------------------------它下面的都是小号任务的路径。可以把
//------------------------------------------------------------------------------
// Boss Configuration
//------------------------------------------------------------------------------下面的任务复制到它内既可设定其它自己需要设定的任务。
下面修改大号的文件:NTConfig_Sorceress_Linna.ntl 做的是kill diablo的任务,则找到并修改为
//--------------------------\\\\
// Diablo Settings: \\\\
//--------------------------\\\\
NTConfig_CSSealsOnly = false;
NTConfig_CSFrom = \"S\"; // (E)ntrance | (S)tar
NTConfig_CSTpNotSafe = \"TP in\"; (这儿的口令必须和leech的文件中的口令一致)
NTConfig_CSTpSafe = \"TP in\";(第二次大号开门时的口令,也可以改为TP in)
//------------------------------------------------------------------------------
// General configuration
//------------------------------------------------------------------------------
NTConfig_PublicMode = true; // 这儿必须填true
最后注意了:需要组队的两个号必须互加为好友,用/f a 帐号 口令互加好友,小号的客户端必须是英语版的,否则小号不会自动加入大号创的房间,小号用的是加载 LeechStarter2.2 大号用的是加载LeaderStarter2.2。http://1000eb.com/9z35 |
|