This is a script by me. Is it bad?
talk("DiceBag by Secton 8448, initiated");
function serverCmdDiceHelp(%client)
{
findClientByName(%client.name).client.chatMessageAll("<color:ffff00>Say /d6 to roll a standard 6-sided dice.");
}
function serverCmdDice(%client,%t)
{
%t=getRandom(1,6)
talk("" @ %client.name @ " rolled a D6 and got " @ %t @ "");
}
No. No. No. WTF!
This is what I see immediately:
>find a client by name, using the name of the client YOU ALREADY HAVE
>get the client of THE FOUND CLIENT THAT YOU ALREADY HAVE
>MESSAGE EVERYONE ANYWAY!!
WHAT THE forget IS WRONG WITH YOU?? HOW IS THIS POSSIBLE??!?
That's like saying "find me any person with the same name as the person I already have, then tell me which person he is, then disregard him completely and just tell everyone in the room"