Автор: ZzAQ: Дата: 06.10.2008
Заходим в src\map\ открываем atcommand.c
Пишем сам код команды:
/*==========================================
* @show by KarLaeda
* => Displays the point on minimap
*------------------------------------------
*/
int atcommand_show(
const int fd, struct map_session_data* sd,
const char* command, const char* message)
{
int x = 0, y = 0;
nullpo_retr(-1, sd);
if (!message || !*message || (sscanf(message, "%d %d", &x, &y) != 2)) {
clif_displaymessage(fd, "usage: @show ");
return -1;
}
clif_viewpoint(sd, 1, 1, x, y, 2, 0xFF0000);
return 0;
}
{ "@show", 1, atcommand_show },
Автор: : Дата: 01.01.1970