Initial commit
This commit is contained in:
40
lotgd-web/lotgd/modules/findgem.php
Executable file
40
lotgd-web/lotgd/modules/findgem.php
Executable file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
// translator ready
|
||||
// mail ready
|
||||
// addnews ready
|
||||
function findgem_getmoduleinfo(){
|
||||
$info = array(
|
||||
"name"=>"Find Gems",
|
||||
"version"=>"1.1",
|
||||
"author"=>"Eric Stevens",
|
||||
"category"=>"Forest Specials",
|
||||
"download"=>"core_module",
|
||||
);
|
||||
return $info;
|
||||
}
|
||||
|
||||
function findgem_install(){
|
||||
module_addeventhook("forest", "return 100;");
|
||||
module_addeventhook("travel", "return 20;");
|
||||
return true;
|
||||
}
|
||||
|
||||
function findgem_uninstall(){
|
||||
return true;
|
||||
}
|
||||
|
||||
function findgem_dohook($hookname,$args){
|
||||
return $args;
|
||||
}
|
||||
|
||||
function findgem_runevent($type,$link)
|
||||
{
|
||||
global $session;
|
||||
output("`^Fortune smiles on you and you find a `%gem`^!`0");
|
||||
$session['user']['gems']++;
|
||||
debuglog("found a gem in the dirt");
|
||||
}
|
||||
|
||||
function findgem_run(){
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user