Greetings,
I want to change the English to Chinese as much as possible.
The VME PLA Chinese Mod is using English as the default language.
I've got a few people in Hong Kong and China to lend me voice help.
I can made a few OGG files for triggers with hints that will give English text along with Chinese voice.
My next testing is script by Sendar for random voices like "Bingo!" and "Got that sucker"
; ****************************************************************
; Random Kill Sound Script
; Created by: Semedar
; ****************************************************************
?!local _this: exit
_random = random 5
_a = _random - (_random mod 1)
~(random 3)
?(_a == 1) : goto "1"
?(_a == 2) : goto "2"
?(_a == 3) : goto "3"
?(_a == 4) : goto "4"
?(_a == 5) : goto "5"
#1
playSound "GotHim"
exit
#2
playSound "Contact"
exit
#3
playSound "TangoDown"
exit
#4
playSound "BingoBingo"
exit
#5
playSound "ThreatNeutralized"
exit
Or, I can use Zipper5's code:
;ArmA2 Kill Sound Script
;Only Works In ArmA2 With A Function Module:
waitUntil {!(isNil "bis_fnc_init")}; _sound = ["Sound1","Sound2","Sound3","Sound4","Sound5"] call bis_fnc_selectRandom; playSound _sound;
What I need is a way to change the command voices the are default BIS English like:
"Man at 3 O'clock!" or "Move 5 meters" or "HOLD" and "STOP" and "FIRE" and "ENGAGE" and so forth and so forth...
Is this possible and if so, is it going to be way over my head??
Thanks guys for at least replying to the post..
Kommiekat