Problems: Veteran/Expert Tactical Support Combat Badge/Grappling Hook Badge/Zip Line Badge definition is wrong. Yous will never ever reach 100/500 deployes in a round.
Gear up one: /python/bf2/stats/medal_data_xpack.py alter to:
#Tactical Support Combat Badge #Basic ('1260602_1', 'X1fbb', one, object_stat ('weapons', 'deployed', WEAPON_TYPE_TACTICAL, 10)), #Veteran ('1260602_2', 'X1fbb', 1, f_and( has_medal ('1260602_1'), f_plus( global_stat ('de-6'), object_stat ('weapons', 'deployed', WEAPON_TYPE_TACTICAL), 100))), #Expert ('1260602_3', 'X1fbb', ane, f_and( has_medal ('1260602_2'), f_plus( global_stat ('de-6'), object_stat ('weapons', 'deployed', WEAPON_TYPE_TACTICAL), 500))), #Grappling Hook Usage #Bones ('1260708_1', 'X1ghb', 1, object_stat ('weapons', 'deployed', WEAPON_TYPE_GRAPPLINGHOOK, x)), #Veteran ('1260708_2', 'X1ghb', 1, f_and( has_medal ('1260708_1'), f_plus( global_stat ('de-seven'), object_stat ('weapons', 'deployed', WEAPON_TYPE_GRAPPLINGHOOK), 100))), #Good ('1260708_3', 'X1ghb', 1, f_and( has_medal ('1260708_2'), f_plus( global_stat ('de-7'), object_stat ('weapons', 'deployed', WEAPON_TYPE_GRAPPLINGHOOK), 500))), #Goose egg Line Usage #Bones ('1262612_1', 'X1zlb', 1, object_stat ('weapons', 'deployed', WEAPON_TYPE_ZIPLINE, 10)), #Veteran ('1262612_2', 'X1zlb', i, f_and( has_medal ('1262612_1'), f_plus( global_stat ('de-viii'), object_stat ('weapons', 'deployed', WEAPON_TYPE_ZIPLINE), 100))), #Expert ('1262612_3', 'X1zlb', 1, f_and( has_medal ('1262612_2'), f_plus( global_stat ('de-8'), object_stat ('weapons', 'deployed', WEAPON_TYPE_ZIPLINE), 500))),
Please find, that tactical deployes depends on object template name. Information technology's only triggered if weapon-template-name contains "flashbang", "teargas" or "molotovcocktail". This is hardcoded in server-executable. Xpack (Special Forces) will piece of work, but other Mods may not. Set 2: /ASP/getplayerinfo.aspx
become near to end of the file
a) before line
[blockquote]$caput .= "vac-0\tvac-1\tvac-2\tvac-3\tvac-four\tvac-5\tvac-6\due north";[/blockquote]
add
[blockquote] if (strpos($info, 'de-') !== false) {
$caput .= "de-6\tde-seven\tde-eight\t";
}[/blockquote]
b) earlier line
[blockquote] #vac-
$out .= "0\t0\t0\t0\t0\t0\t0\northward";[/blockquote]
add
[blockquote] if (strpos($info, 'de-') !== simulated) {
$out .= $roww['tacticaldeployed'] . "\t" .
$roww['grapplinghookdeployed'] . "\t" .
$roww['ziplinedeployed'] . "\t";
}[/blockquote]