首页 | 完整UI | 动作条 | 职业 | 战斗 | 聊天 | 物品 | 地图 | 任务 | 组队 | 界面增强 | 其它 | 论坛

魔兽世界中国Interface Kit动作条 → 详细内容:
Discord Action Bars
2005-04-16 23:18 Update by Mandarin
评分: 版本:1.41
作者及来源:Lozareth,http://www.clandiscord.com
点击: 文件大小:24.78KB
下载地址:
本地下载
简要介绍:
拥有一个强大的的调节动作条细节的菜单.
详细介绍:

介绍:
Description :
This mod gives you 10 hotbars and 108 buttons to play with. It also hides the default interface art. Here's what you can do with the bars:

这个插件能够提供给你10个动作条,一共108个按键.同时它也会将WOW默认的动作条给隐藏掉.下面这些是你可以对这些动作条所作的事情:

* Drag a bar to where you want it with the red label above the bar
* Set the number of buttons per bar
* Set the number of rows in which to display the buttons
* Set the amount of space between each button on the bar
* Set the size of each button on the bar
* Set the transparency of the bar
* Lock buttons to prevent you accidentally dragging actions off them
* Hide empty buttons
* Collapse the bar to the left to fill in empty buttons
* Drag around the bag bar, pet bar, and micro bar or hide them
* Set the colors for out of range and out of mana display
* Set 10 buttons to keybindings and use other keybindings to set which bar the button keybindings apply to

* 按住每组动作条上方的红色小按钮然后拖曳,就可以将当前动作条移动到任何你想移动到的地方(前提是这个地方被允许- -")
* 不同的动作条的按键数可以任意调节
* 不同动作条的排数以及每排所能拥有的按键数可以任意调节
* 你可以设置每个动作条里面按键与按键之间的距离
* 你可以将,在一个动作条里面的不同按键拥有不同的大小.
* 你可以设置动作条的透明度
* 你可以锁定按键,用来防止来自你不小心的拖曳造成的不便.
* 隐藏空白的按键
* Collapse the bar to the left to fill in empty buttons
* 你还可以用它来移动你的包包,宠物动作条,小型动作条等,或者是你也可以选择隐藏它们.
* 你可以设置你的按键在你魔法值不足或者是在动作范围之外的时候,使用颜色来覆盖按键.
* Set 10 buttons to keybindings and use other keybindings to set which bar the button keybindings apply to

Slash Commands:
/dab -- Show/Hide the options window
/dab toggle # -- Show bar # if it's hidden or hide it if it's shown
/dab show # -- Show bar #
/dab hide # -- Hide bar #
/dab showallbars -- Can you guess? :)
/dab hideallbars
/dab setkeybar # -- Set the dynamic keybindings to apply to bar #


命令:
/dab
显示/隐藏选项窗口
/dab toggle #
显示/隐藏编号为#的动作条的用来移动动作条的红色小按钮.
/dab show #
显示编号为#的动作条
/dab hide #
隐藏编号为#的动作条
/dab showallbars
显示所有的动作条
/dab hideallbars
隐藏所有的动作条
/dab setkeybar #
Set the dynamic keybindings to apply to bar #
设置动态按键绑定应用到名字为#的动作条.

Some Macro Examples:
I made this because I wanted to be able to make custom hotbars that pop up when I click a button. Say my main bar is 1 and I'm using 5 total bars. Here's a way to setup buttons on the mainbar so they hide other bars that might be showing and show or hide the bar you want.

/dab toggle 5
/dab setkeybar 5
/dab hide 4
/dab hide 3
/dab hide 2

One Last Note:
Though I hide the xp bar, I didn't include a new one in this version. I recommend using AvgXP Plus myself for an XP bar.
最后一个小提示:
虽然我隐藏了经验值的动作条,但是我并没有添加一个关于经验的动作条倒这个版本,所以我(作者)推荐使用AvgXP Plus来替代WOW默认的动作条.


run(); class application { var $db; //数据库操作类 var $tpl; //Smarty模板类 var $in; //主输入数组 var $out; //主输出数组 function application() { //加载IPB2 MySQL驱动 require( LIB_DIR . 'db_mysql.php' ); $this->db = new db_driver; $this->db->obj['sql_database'] = SQL_DATABASE; $this->db->obj['sql_user'] = SQL_USER; $this->db->obj['sql_pass'] = SQL_PASS; $this->db->obj['sql_host'] = SQL_HOST; $this->db->connect(); //建立数据库连接 //加载Smarty模板引擎 require( SMARTY_DIR . 'Smarty.class.php' ); $this->tpl = new Smarty; $this->tpl->template_dir = TEMPLATE_DIR; $this->tpl->compile_dir = COMPILE_DIR; //$this->tpl->left_delimiter = '{'; //$this->tpl->right_delimiter = '}'; //整合过滤输入 require( LIB_DIR . 'parse_incoming.php' ); $pi = new parse_incoming; $this->in = $pi->run(); //引入全局基类 require( LIB_DIR . 'base.php' ); } function run() { //------------------------------------- //流程控制 //得到类名与方法名 $query_string = explode('&', $_SERVER['QUERY_STRING']); $class_method = strtolower($query_string[0]); //引入动作基类 require( LIB_DIR . 'action.php' ); $action = explode('.', $class_method); require( CLASS_DIR . $action[0].'.php'); //引入动作类 $idx = new $action[0]($this); //实例化动作类 $idx->$action[1](); //执行方法 //------------------------------------ //------------------------------------ //页面输出 $idx->site = array( 'name' => SITE_NAME, 'url' => SITE_URL, 'dir' => SITE_DIR, 'email' => SITE_EMAIL, 'copyright' => COPYRIGHT, 'version' => VERSION, ); if (isset($idx->page['tpl'])) { $idx->tpl->assign('out', $idx->out); $idx->tpl->assign('site', $idx->site); $idx->tpl->assign('page', $idx->page); $idx->tpl->assign('user', $idx->user); $idx->tpl->assign('session', $_SESSION); $idx->tpl->assign('cookie', $_COOKIE); $idx->tpl->display($idx->page['tpl']); } //------------------------------------- //关闭数据库 $this->db->close_db(); } } ?>



版权所有:WoWar.Com 技术支持论坛