? side player or AI == west : PlaneName = "BISCamel"
the or AI part is what I want to figure out, I need to get the AI name for that player and allot it to be either player or AI that gets inserted into the BISCamel, lets not worry about how im doing that as all I need help on is how to say "or ai"
If I understand you correctly, in short you just want to check if a unit belongs to the west side, and if so, you want to move it into the Camel.
If that's true, then whether or not the unit is AI or player-controlled doesn't matter. Simply, give your unit a name, and then check to which side the unit belongs.
In a trigger, you'd use the following code:
? (side UnitName == west) : PlaneName = "BISCamel"
Obviously, replase UnitName with whatever name you gave to the unit in question.
If my understanding is mistaken and for whatever reason you really do need to know if the unit is AI or player-controlled, you can use the following code instead:
? ((UnitName == player) and (side UnitName == west) : PlaneName = "BISCamel"
? ((UnitName != player) and (side UnitName == west)) : PlaneName = "BISCamel"
I'd assume that you'd want one of the units to get into a different plane instead in this case, though. Modify as necessary.