QUOTE(Yoshi da Sniper @ Jan 30 2004, 07:17 AM)
If (admin=true);
{
RPG = rigged;
}
else
{
RPG = rigged * rigged;
}
Ahhh, java code. Thats always fun... You still did miss a couple of syntax stuff (like double == on boolean functions, and don't (

the if function before the commands)

Here's my version:
QUOTE
If(userId.type() = member.admin()){
rig(RPG.stats(userId));
rig(diceroll());
} //ends if
else If(userId.name("Shadow Paladin") == true){
for(counter, 1, 4){
rig(RPG.stats(userId));
rig(diceroll());
} //ends for loop
} //ends else
:cool:
Edit: Oops had to change one thing