hi i newbie in server making.
how i use this files to make plugins in my server?
ASECO/RASP TMF 2.1.6 [08-6-4]
Moderators: Flo, Assembler Maniac, f*ckfish, TM-Patrol
- Cherimoya
- pedestrian
- Posts: 13
- Joined: 18 May 2008 22:39
- Owned TM-games: TMN:F TMU:F
- Location: Netherlands
- Contact:
Re: ASECO/RASP TMF 2.1.6 [08-6-4]
When a player leaves the server we have always a XMLRPC error with login unknown in the aseco.log. I don't know this is only the case in Aseco 2.1.6 and solved in 2.2.0 or that it is caused by another plugin.
Anyway, the problem is that the leaving login is not cleared from $this->Aseco->server->players->player_list. Many plugin's use this array so it will create errors one way or the other.
To solve this problem and to be sure, add:
unset($this->Aseco->server->players->player_list[$player->login]);
to plugin.localdb.php on line 112
Anyway, the problem is that the leaving login is not cleared from $this->Aseco->server->players->player_list. Many plugin's use this array so it will create errors one way or the other.
To solve this problem and to be sure, add:
unset($this->Aseco->server->players->player_list[$player->login]);
to plugin.localdb.php on line 112