Sziasztok! El hoztam nektek egy külföldi /me parancsot, amit Zezam készített, használjátok egészséggel
Kód:
const White = 0xFFFFFFAA;
const Red = 0xFF0000AA;
const Red2 = 0xB20000AA;
const Blue = 0x330099AA;
const LightBlue = 0x0066B3AA;
const Yellow = 0xFFFF00AA;
const General = 0x809FFEAA;
const Pink = 0xCC0099AA;
const Mecolor = 0x9459B1AA;
function onScriptInit()
{
log(\"Zezam\'s /me script Loaded!\");
}
function onPlayerConnect(playerid)
{
sendPlayerMessage(playerid, Yellow, \"This server is running Zezam\'s /Me script!\");
return 1;
}
function onPlayerCommand(playerid, command)
{
local cmd = split(command, \" \");
if(cmd[0] == \"/me\")
{
if(cmd.len() >= 2)
{
sendMessageToAll(Mecolor, \"\"+getPlayerName(playerid)+\" \"+command.slice(cmd[0].len()+1, command.len()));
}
}
}