What does the c/c++ programmers program in the sc2 map editor? Because maybe i can do it because i know c/c++ even though I don't understand it's role.
Also how do make so that an Dialog box is only shown for one person or even better how do you check how many players are playing?
People what i am asking is what do you do as a Galaxy Scripter. The other questions was about, how do you only show a dialog box to one specific player. Because my map contains a dialog box that ask " Are you going to CO-OP or not ". I am sorry for horrible my grammar
@Redlight51: Go
For the dialog stuff take a look at the dialog related triggers in the editor - you can choose which playergroup to show something to. Making a playergroup from a single player shows it to just one person.
Anything you can do with the GUI trigger editor can be done with Galaxy (plus it can do a little bit more). If you like programming just think of it as a big API you can use to control your maps.
To know how many player are in the game, count number of player in the Player group function called Active Players, if you want to exclude computer, loop through it and exclude when count
What does the c/c++ programmers program in the sc2 map editor? Because maybe i can do it because i know c/c++ even though I don't understand it's role.
Also how do make so that an Dialog box is only shown for one person or even better how do you check how many players are playing?
Yes.
Wow his question is all over the place lol... Atleast I think it was a question. haha
lol, he just sent me an angry PM.
Dude, grammar is IMPORTANT! I honestly have no clue what you're asking about.
THERE IS NO C in starcraft 2! It's some weird Java-like system called Galaxy Script, but not as usable as Java.
Galaxy has much more in common with C than Java.
People what i am asking is what do you do as a Galaxy Scripter. The other questions was about, how do you only show a dialog box to one specific player. Because my map contains a dialog box that ask " Are you going to CO-OP or not ". I am sorry for horrible my grammar
@Redlight51: Go For the dialog stuff take a look at the dialog related triggers in the editor - you can choose which playergroup to show something to. Making a playergroup from a single player shows it to just one person.
Anything you can do with the GUI trigger editor can be done with Galaxy (plus it can do a little bit more). If you like programming just think of it as a big API you can use to control your maps.
@Redlight51: Go
Yes your question did jump up all over the places.
To have dialog player specific, use this action
http://wiki.sc2mapster.com/galaxy/triggers/show-hide-dialog/
with this function
http://wiki.sc2mapster.com/galaxy/triggers/convert-player-to-player-group/
(galaxy syntax documented there)
To know how many player are in the game, count number of player in the Player group function called Active Players, if you want to exclude computer, loop through it and exclude when count
Thanks alot guys. Programmer thanks for the links. My bad shouldve saw that i was up late so i missed it xD but thanks.