more stats, wowhead link
This commit is contained in:
parent
3cc295a6b5
commit
456142f8fe
@ -4,15 +4,19 @@
|
||||
\SYSTEM\autoload::registerFolder(dirname(__FILE__).'/qq','DBD');
|
||||
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_creature_deploy');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_creature_mojo');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_creature_map');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_creature_zone');
|
||||
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_object_deploy');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_object_mojo');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_object_map');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_object_zone');
|
||||
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_quest_deploy');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_quest_mojo');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_quest_map');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_quest_zone');
|
||||
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_item_deploy');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_item_deploy');
|
||||
\SYSTEM\SAI\saimod_sys_todo::register('todo_stats_item_mojo');
|
||||
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
class todo_stats_creature_mojo extends \SYSTEM\SAI\todo_stats {
|
||||
public static function stats() {
|
||||
return new \SYSTEM\SAI\todo_stats_data(
|
||||
'Creature Mojo Tag',
|
||||
\DBD\TAGS_STATISTICS_CREATURE::Q1(array(10))['count'],
|
||||
\DBD\CREATURE_COUNT::Q1()['count']);}
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
class todo_stats_item_mojo extends \SYSTEM\SAI\todo_stats {
|
||||
public static function stats() {
|
||||
return new \SYSTEM\SAI\todo_stats_data(
|
||||
'Item Mojo Tag',
|
||||
\DBD\TAGS_STATISTICS_ITEM::Q1(array(10))['count'],
|
||||
\DBD\ITEM_COUNT::Q1()['count']);}
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
class todo_stats_object_mojo extends \SYSTEM\SAI\todo_stats {
|
||||
public static function stats() {
|
||||
return new \SYSTEM\SAI\todo_stats_data(
|
||||
'Object Mojo Tag',
|
||||
\DBD\TAGS_STATISTICS_OBJECT::Q1(array(10))['count'],
|
||||
\DBD\OBJECT_COUNT::Q1()['count']);}
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
class todo_stats_quest_mojo extends \SYSTEM\SAI\todo_stats {
|
||||
public static function stats() {
|
||||
return new \SYSTEM\SAI\todo_stats_data(
|
||||
'Quest Mojo Tag',
|
||||
\DBD\TAGS_STATISTICS_QUEST::Q1(array(10))['count'],
|
||||
\DBD\QUEST_COUNT::Q1()['count']);}
|
||||
}
|
||||
@ -1,6 +1,7 @@
|
||||
<tr>
|
||||
<td>${Entry}</td>
|
||||
<td><a class="wow_creature" _id="${Entry}" href="#">${Name}</a></td>
|
||||
<td><a class="wow_creature" _id="${Entry}" href="#">${Name}</a>
|
||||
<a href="http://datenbank.welli-it.de/?npc=${Entry}" target="_blank">WH</a></td>
|
||||
<td>${SubName}</td>
|
||||
<td>${ModelId1}</td>
|
||||
<td>${ModelId2}</td>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<tr>
|
||||
<td>${entry}</td>
|
||||
<td><a class="wow_item" _id="${entry}" href="#">${name}</a></td>
|
||||
<td><a class="wow_item" _id="${entry}" href="#">${name}</a>
|
||||
<a href="http://datenbank.welli-it.de/?item=${entry}" target="_blank">WH</a></td>
|
||||
<td>${description}</td>
|
||||
<td>${Quality}</td>
|
||||
<td>${BuyPrice}</td>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<tr>
|
||||
<td>${entry}</td>
|
||||
<td><a class="wow_object" _id="${entry}" href="#">${name}</a></td>
|
||||
<td><a class="wow_object" _id="${entry}" href="#">${name}</a>
|
||||
<a href="http://datenbank.welli-it.de/?object=${entry}" target="_blank">WH</a></td>
|
||||
<td>${type}</td>
|
||||
<td>${displayId}</td>
|
||||
<td>${faction}</td>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<tr>
|
||||
<td>${entry}</td>
|
||||
<td><a class="wow_quest" _id="${entry}" href="#">${Title}</a></td>
|
||||
<td><a class="wow_quest" _id="${entry}" href="#">${Title}</a>
|
||||
<a href="http://datenbank.welli-it.de/?quest=${entry}" target="_blank">WH</a></td>
|
||||
<td>${Details}</td>
|
||||
<td>${Objectives}</td>
|
||||
<td>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user