Array
Posted: Sun Oct 04, 2009 10:57 am
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 3506:
L2JDP Revision 6606:
Hello. I'm trying to make an array which would contain strings and i could get them by number:
And the getTopPvpN(1); anwser would be "aaa". But it doesn't compile. I get errors. Anybody knows solution?
» Find Revision
L2J Revision 3506:
L2JDP Revision 6606:
Hello. I'm trying to make an array which would contain strings and i could get them by number:
Code: Select all
int _topPvpN[] = new String[10];...._topPvpN[1] = "aaa";....public int getTopPvpN(int i){return _topPvpN[i];}