Quote:
Originally Posted by thepub
(Post 1175240)
I got this error when I tried to install it
It's not working.
|
Maybe I didn't export it correctly somehow. If you wanna try creating your own plugin, just use my code.
hook needed: vbplaza_action_thief_process_complete
code:
PHP Code:
if ($thiefsuccessful)
{
// send the user a private message
$title = "Warning: Theft Detected";
$message = "[b]AUTOGENERATED PM:[/b] I just stole " . $action['thiefamount'] . " marklar from you. To prevent this in the future, its a good idea to keep all your marklar in the bank!";
vbplaza_send_pm($vbulletin->userinfo, $touser, $title, $message);
}
else
{
// send the user a private message
$title = "Warning: Theft Detected";
$message = "[b]AUTOGENERATED PM:[/b] I just attempted to steal " . $action['thiefamount'] . " marklar from you, but failed. To prevent this in the future, its a good idea to keep all your marklar in the bank!";
vbplaza_send_pm($vbulletin->userinfo, $touser, $title, $message);
}
Hopefully you'll know what to do with that. If not, you'll have to get a real coder to fix it, sorry.
|