22.11.2010, 19:39
You can do thing that this map will work only on the sorter ip. I will give you a cod if i found it :P
---------
for the automsg
new msgb;
new BotMessages[2][256] =
{
{"Bot: Message1"},
{"Bot: Message2"}
};
2 stands for the number of msgs
SetTimer("MSGHelp",120000,true); - OnGameModeInit 120000 - stands for the time between messages
End of the map
public MSGHelpl(playerid)
{
if(rbot < 33)
{
msgb++;
}
else
{
msgb = 0;
}
SendClientMessageToAll(COLOR_RED,BotMessages[msgb]);
}
---------
for the automsg
new msgb;
new BotMessages[2][256] =
{
{"Bot: Message1"},
{"Bot: Message2"}
};
2 stands for the number of msgs
SetTimer("MSGHelp",120000,true); - OnGameModeInit 120000 - stands for the time between messages
End of the map
public MSGHelpl(playerid)
{
if(rbot < 33)
{
msgb++;
}
else
{
msgb = 0;
}
SendClientMessageToAll(COLOR_RED,BotMessages[msgb]);
}