hello everyone, I'm workning on an english modification that is very close to release. I'd like to set that groups buttons, when pushed, are automatically related to an antenna wich has commands to call units off map, debug menu etc. I already have the antennas in map with the commands but I didn't figure out how to connect them to the groups. Could you help me finish my modification?

Having Groups related to antennas
Jetzt Mitglied werden!
Du bist noch kein Emergency Hub Member? Registriere dich kostenlos und werde Teil der Emergency Hub Community :)
-
-
You want use the shortcuts?
I remind something like this:
Code
Alles anzeigenGameObject *o1; GameObjectList ol1; o1 = *ol1.GetObject(0); Game::AddToGroup(o1,0); Person p0(o1); p0.AssignCommand("rang_1"); o1 = *ol1.GetObject(1); Game::AddToGroup(o1,1); Person p1(o1); p1.AssignCommand("alarm_161"); p1.AssignCommand("alarm_162"); Game::AddToGroup(o1,2); etc..
-
You want use the shortcuts?
I remind something like this:
Code
Alles anzeigenGameObject *o1; GameObjectList ol1; o1 = *ol1.GetObject(0); Game::AddToGroup(o1,0); Person p0(o1); p0.AssignCommand("rang_1"); o1 = *ol1.GetObject(1); Game::AddToGroup(o1,1); Person p1(o1); p1.AssignCommand("alarm_161"); p1.AssignCommand("alarm_162"); Game::AddToGroup(o1,2); etc..
thanks a lot! Can I put the antenna in map with commands or I need to set it's commands by here?
-
You can do it either way