|
楼主 |
发表于 2017-4-28 15:01:24
|
显示全部楼层
来自 中国–广东–深圳
本帖最后由 tly111222 于 2017-6-21 16:31 编辑
我自己研究出来了。
主要在 war3ft.inl 里面设置(还要修改其他文件)
WC3_NewSession( idUser )
{
if ( is_user_bot( idUser ) )
{
if ( get_pcvar_num( CVAR_wc3_save_xp ) && !p_data[idUser][P_XP] )
{
p_data[idUser][P_XP] = XP_GetByLevel( floatround(random_float(0.01,3.16)*random_float(0.01,3.16)) );
}
if ( random_float(0.01, 1.0 ) <= BOT_CHANGERACE || !p_data[idUser][P_RACE] )
{
p_data[idUser][P_RACE] = 18; //机器人种族 18对应 屠夫
WC3_SetRace( idUser, p_data[idUser][P_RACE] );
}
} |
|