- script DiceHack -1,{
end;
OnInit:
bindatcmd "dice",strnpcinfo(3)+"::OnAtcommand";
end;
OnAtcommand:
if (getgroupid() < 10) { end; }
.@dice = atoi(.@atcmd_parameters$[0]);
if (.@dice >=1 && .@dice <= 6) {
.@dice += 57;
// emotion ET_DICE6;
// emotion ET_CONFUSE;
emotion .@dice;
}
end;
}
Hi,
I tried to show the emotion but not showing in game. I tried to debug with emotion ET_DICE6 and emotion ET_CONFUSE but not luck. /dice still works.
I am using 2017-06-14bRagexeRE client. Please help me. Thanks.