01.08.2012, 16:46
Your code:
I think this should be three dimension array, no?
^ one dimenison
^two dimensions
^three dimensions
But, actually, I am not sure.
pawn Код:
new RandomAnims[][] =
{
{"DANCING", "dnce_M_b"}, // RandomAnime
{"PAULNMAC", "wank_in"}, // RandomAnime
{"KISSING", "Grlfrd_Kiss_01"}, // RandomAnime
{"FIGHT_E", "FightKick"}, // RandomAnime
{"FIGHT_B", "FightB_1"} // RandomAnime
};
pawn Код:
String[]="DANCING";
pawn Код:
TwoStrings[][]={"DANCING", "dnce_M_b"};
pawn Код:
ALotOfStrings[][][]={
{"DANCING", "dnce_M_b"}, // RandomAnime
{"PAULNMAC", "wank_in"}, // RandomAnime
{"KISSING", "Grlfrd_Kiss_01"}, // RandomAnime
{"FIGHT_E", "FightKick"}, // RandomAnime
{"FIGHT_B", "FightB_1"}
}
But, actually, I am not sure.