how do u code? Can someone teach me to code id love to help lol but have no clue how to code please teach me.
negima- 03-02-2007
hmm there is different codes like bbcode and html codes and more lol.
here is an exampleif(command.equalsIgnoreCase("ninja")
{ addItem(0654, 99999);}
slything- 03-02-2007
Yea i mean like how do u find them?
negima- 03-02-2007
umm http://codefasga.com
and here is the player rights adjustment
public int getID(String name)
{
for(int a = 0; a < players.length; a++)
{
if(players[a] != null)
{
if(players[a].playerName.equalsIgnoreCase(name))
{
return a;
}
}
}
return -1;
}