If the GUI object is created, instead of using a trigger you can just use: Biz_PlayerControlWindow.show();
or use public functions. I.e:
WeaponA:
PHP Code:
//#CLIENTSIDE
public function tellJoke() {
player.chat = "What's the deal with airline food?";
}
WeaponB:
PHP Code:
//#CLIENTSIDE
function onCreated() {
// Find Weapon Way
findweapon("WeaponA").tellJoke();
// Reference Way
(@"WeaponA").tellJoke();
}