mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-12-13 13:24:49 +00:00
31 lines
494 B
Text
31 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$"
|
||
|
}
|
||
|
}
|
||
|
}
|