Автор: Leroy: Дата: 07.05.2010
[SQL]: DB error - Table 'ro.pvpladder' doesn't exist
[Debug]: at ..\src\map\script.c:12279 - select name, kills, deaths from pvpladde
r order by kills desc limit 20
[Debug]: Source (NPC): PvP-StatsViewer at prontera (164,196)
[SQL]: DB error - Table 'ro.pvpladder' doesn't exist
[Debug]: at ..\src\map\script.c:12279 - select name, streaks, date_format(streak
time,'%a %e/%c/%y %r') from pvpladder where streaks >= 3 order by streaks desc l
imit 20
[Debug]: Source (NPC): PvP-StatsViewer at prontera (164,196)
Не совсем врублюсь что тут такое...? Базы не хватает? Это пишет меп сервер.Это по сути скрипт анонса арены со звуком.
Подскажите пожалусто.
Автор: Leroy: Дата: 07.05.2010
Прост появляется когда на нпс нажимаю... А как исправить её?
Автор: nomn: Дата: 07.05.2010
со скриптом должна была идти таблица, импортируй её в свою базу данных
[SQL]: DB error - Table 'ro.pvpladder' doesn't exist
Автор: nomn: Дата: 07.05.2010
[COLOR="Indigo"]... открой блокнот, вставь туда это
create table pvpladder (
char_id int(11) not null default '0' primary key,
name varchar(30) not null default '',
streaks smallint(6) unsigned not null default '0',
kills smallint(6) unsigned not null default '0',
deaths smallint(6) unsigned not null default '0',
streaktime datetime
) engine = myisam;
create table ownladder (
guild_id int(11) not null default '0' primary key,
name varchar(24) not null default '',
currentown smallint(6) unsigned not null default '0',
highestown smallint(6) unsigned not null default '0',
owntime datetime
) engine = myisam;