mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-28 01:56:24 +00:00
30 lines
494 B
Text
30 lines
494 B
Text
db IOSPD "ios_pd"
|
|
{
|
|
usepch "stdpch.h"
|
|
|
|
/*
|
|
* Chat Logging
|
|
*/
|
|
file "ios_chat_log"
|
|
{
|
|
logmsg CreateTeam(CEntityId team)
|
|
{
|
|
"Player team $team$ created"
|
|
}
|
|
|
|
logmsg DeleteTeam(CEntityId team)
|
|
{
|
|
"Player team $team$ deleted"
|
|
}
|
|
|
|
logmsg PlayerJoinsTeam(CEntityId player, CEntityId team)
|
|
{
|
|
"Player $player$ joins team $team$"
|
|
}
|
|
|
|
logmsg PlayerLeavesTeam(CEntityId player, CEntityId team)
|
|
{
|
|
"Player $player$ leaves team $team$"
|
|
}
|
|
}
|
|
}
|