Status
Not open for further replies.
I believe it can be added, but I'm not aware of any current integration available by default.
 
I think the last time they answered this they said "no, but it's made in a way that allows the arcade makers to easily integrate."

But someone is going to have to do it. Either vBCredits or arcades. And no one is. It would be nice if you guys here could.
 
The old integrations with the arcades should continue to work if you keep the default vbcredits II currency (Credits)
 
Any link to an integration that would work? Or would it work out of the box?

I think IPBArcade works with vBPlaza. Does that mean it could work out of the box with vBCredits too?
 
I thought I would give this a try with the old integration.

vb4.2.2 and ibProArcade v2.7.2+

First I get this error:
PHP:
Warning: Only variables should be passed by reference in ..../plugins/credits_ibproarcade_plugins.php on line 26

Line 26 has:
PHP:
switch (array_pop(array_keys(vBulletinHook::fetch_hookusage(), true)))

You can hide the error within the config.php file but that doesnt fix it..

Anyone have any ideas ??
 
Last edited:
You'll need to change it to:
PHP:
$hookUsageKeys = array_keys(vBulletinHook::fetch_hookusage(), true);
switch (array_pop($hookUsageKeys))
 
Status
Not open for further replies.
Back
Top