PDA

View Full Version : Major Additions - vbBux / vbPlaza v1.5.8 (Points + Store System)


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17]

mamashid
02-04-2007, 03:54 AM
Be sure you have it uploaded to the correct directorys
Double checked and still getting this error!!

hitboy
02-04-2007, 04:53 AM
Can anyone tell me how to charge points to open new threads in specific forums anyone!!! lol

Shazz
02-04-2007, 04:55 AM
Can anyone tell me how to charge points to open new threads in specific forums anyone!!! lol

Should be in options in forum manager, pick your forum
Or check vBplaza options on the left side

Zalaki
02-04-2007, 06:17 AM
I am getting the Permissions error on my forum.. is it possible to fix this somehow?

hitboy
02-05-2007, 03:20 AM
Should be in options in forum manager, pick your forum
Or check vBplaza options on the left side

i checked for about a week and I cant find anything on it nor does anything work

mamashid
02-05-2007, 12:49 PM
Can anybody help please?

thepub
02-05-2007, 02:23 PM
I wrote a plugin that alerts the person via PMs. You will need to edit the plugin for your forum (unless your 'points' are called 'marklar' too). ;)

I got this error when I tried to install it

Parse error: syntax error, unexpected '<' in /home/theneigh/public_html/vbplaza/action.thief.php(259) : eval()'d code on line 1


It's not working.

mamashid
02-05-2007, 03:40 PM
Help! I dont have the vbplaza link on my admin cp, what did i do wrong? Help Help Help!!! And in usergroups I am suppose to have a setting to change to let the usergroup to have permission to use the vbplaza but its not there :(

fly
02-05-2007, 04:38 PM
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:
if ($thiefsuccessful)
{
// send the user a private message
$title = "Warning: Theft Detected";
$message = "AUTOGENERATED PM: 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 = "AUTOGENERATED PM: 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.