форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.5.x > Hacks, mods and scripts [3.5.x]
  • »
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
 
 
 
 
fuldon
Гуру
 
fuldon's Avatar
Thumbs up vbBux / vbPlaza (Points + Store System)
22

vbBux / vbPlaza v1.5.5 (Points + Store System)

v1.5.5 Update:
1) Bugfix: Mod CP doesnt give a parse error anymore for the Arcade Options.
2) Bugfix: Typo fixed inside plugins/vbplaza_forumdata_start.php
3) Bugfix: Admin CP -> Find User did not display the Can Receive Points & Can Access vbPlaza properly. The settings saved properly, but if you re-edited the user, the changes may or may not be displayed.
4) Bugfix: Exploit when they create a post thats 10000 characters and then edit it back down to the normal post size thats much less. It removes the original points it gave them and then gives them the points for their new shortened post. So in essence, if they want to keep the larger amount of points, they have to leave the post long now, so you can spot it and ban them for abuse
5) Bugfix: Download Attachment confirmation page now displays how many points you have on hand as well as in the bank properly.
6) Bugfix: Sometimes Gifts/Ribbons wouldnt show up in the postbit properly.
7) vbPlaza Setting: Enable Mod CP Options, will allow you to disable the Mod CP options from your forum Moderators.
8) vbPlaza Setting: ibProArcade Jackpot Increases X Percentage of Cost to Play, will allow the jackpot to be increased each time someone plays a game by X Percentage of the Cost per Game.
9) vbPlaza Setting: Arcade Pass Owners Can Win Jackpots, will allow your Arcade Pass Owners the possibility to win jackpots, but still play for free.
10) ibProArcade Jackpot system supported, for static and raised jackpot types. There is still a global setting in vbBux Options to set the amount of vbBux a user will win for winning any game. If you want to disable that setting and only use the ibProArcade Jackpot system, please put a 0 for the setting in vbBux Settings.
11) Arcade Pass system has changed for the better. It will now allow you to copy the Option and create different arcade passes that expire in X days that you specify properly.
12) vbPlaza Setting: vbPlaza Options Display Style, will show your Options in the style specified.
13) vbPlaza Setting: Display Options Per Row in vbPlaza, will display X options per row in vbPlaza.
14) vbPlaza Setting: Enable vbPlaza Override For Username HTML Markup, will allow you to enable/disable vbPlaza's Username HTML Markup when a user has purchased options to affect their username.
15) A lot of the templates have been cleaned up. You may need to revert any vbPlaza templates you have customized for everything to work properly again.
16) The Bank has its own template now and looks a lot better.
17) New Give Gifts Setting: Can Use Radio Buttons to display the gifts to choose from instead of the Drop Down Box. Admin CP -> vbPlaza -> Manage Options -> Give Gifts -> At the bottom.
18) Admin Feature: Search Gifts & Search Ribbons now displays a delete option to delete the gift next to each gift that was found for easy access.
19) Lottery Winners Page now shows the currently active lotteries, with the current jackpot, ending time & number of tickets purchased for each active lottery.
20) vbPlaza Option: Bold Thread Title, with this option you can bold the thread title of your choosing when its viewed on the forums list.
21) vbPlaza Option: Italic Thread Title, with this option you can italicize the thread title of your choosing when its viewed on the forums list.
22) vbPlaza Option: Underline Thread Title, with this option you can underline the thread title of your choosing when its viewed on the forums list.
23) vbPlaza Option: Colored Thread Title, with this option you can make the thread title of your choosing be displayed in the color of your choosing on the forums list.
24) vbPlaza Option: Glow Thread Title Color, with this option you can make the thread title of your choosing glow in the color of your choosing on the forums list.
25) vbPlaza Option: Shadow Thread Title Color, with this option you can make the thread title of your choosing shadow in the color of your choosing on the forums list.
26) vbPlaza Option: Thread Title Font Type, with this option you can make the thread title of your choosing be displayed in the font type of your choosing on the forums list.
27) User History Page now has an Expire Now option to expire options immediately. (This is useful to test if an item is expiring properly.)
28) Admin CP User Profile Edit: Can now turn options on/off for Display Flags, Other Flags & Immunity.
29) Admin Feature: Admin CP -> vbPlaza -> Search Users. This will allow you to search for users with Display Flags, Other Flags or Immunity quickly.
30) Admin Feature: Admin CP -> vbPlaza Maintenance -> Clear All Immunity. This will allow you to reset all of your user's immunity flags to disabled.
31) Donations are now taxable. All you have to do is set the Tax for the Donation in Admin CP -> vbPlaza -> Manage Options -> Donate -> Tax. If you do not want Donations taxed, then leave the tax percentage at 0.
NOTE: New Template Edit for Everyone for the template 'threadbit' is at the very bottom.


Template Edits:
A) Inside template 'postbit' or 'postbit_legacy':

Find:
Code:
<div id="postmenu_$post[postid]">
Replace With:
Code:
<!-- vbPlaza start -->
<div id="postmenu_$post[postid]" <if condition="$post['namestyle']">style="$post[namestyle]"</if>>
<!-- vbPlaza end -->
Next Find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Replace With:
Code:
<!-- vbPlaza start -->
<if condition="$post['usertitle']"><div class="smallfont" <if condition="$post['titlestyle']">style="$post[titlestyle]"</if>>$post[usertitle]</div></if>
<!-- vbPlaza end -->
Then Find:
Code:
$vbphrase[posts]: $post[posts]
Replace With:
Code:
$vbphrase[posts]: $post[posts]
<!-- vbPlaza start -->
<if condition="$vboptions['vbbux_enabled']"><br />
$vbphrase[vbbux_points]: $post[points]<br />
$vbphrase[vbbux_bank]: $post[bank]<br />
<phrase 1="$vbphrase[vbbux_points]">$vbphrase[vbbux_total_points]</phrase>: $post[totalpoints]<br />
<a href="vbplaza.php?do=donate&amp;userid=$post[userid]">$vbphrase[vbplaza_donate]</a><br />
</if>
<!-- vbPlaza end -->
Then Find:
Code:
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
Add Below:
Code:
<!-- vbPlaza start -->
<if condition="$post['giftsdisplay']"><div class="smallfont">$post[giftsdisplay]</div></if>
<if condition="$post['ribbonsdisplay']"><div class="smallfont">$post[ribbonsdisplay]</div></if>
<!-- vbPlaza end -->
B) Inside template 'navbar':
Find:
Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
<if condition="$show['popups']">
Add Below:
Code:
<!-- vbPlaza start -->
<if condition="$show['member']">
<if condition="$vboptions['vbplaza_enabled']"><td id="vbplazamenu" class="vbmenu_control"><a href="$show[nojs_link]#vbplazamenu">$vbphrase[vbplaza_name] $vbphrase[vbplaza_menu]</a> <script type="text/javascript"> vbmenu_register("vbplazamenu"); </script></td></if>
</if>
<!-- vbPlaza end -->
Then Find:
Code:
<!-- / NAVBAR POPUP MENUS -->
Add Above:
Code:
<!-- vbPlaza start -->
<if condition="$show['member']">
<!-- vbplaza tools menu -->
<div class="vbmenu_popup" id="vbplazamenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead"><a href="vbplaza.php?$session[sessionurl]">$vbphrase[vbplaza_name] $vbphrase[vbplaza_main]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=48">$vbphrase[vbplaza_lottery]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=27">$vbphrase[vbplaza_give_gifts]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=118">$vbphrase[vbplaza_give_ribbons]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=13">$vbphrase[vbbux_bank]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=7">$vbphrase[vbplaza_donate]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=16">$vbphrase[vbplaza_thief]</a></td></tr>

<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=richestusers">$vbphrase[vbbux_richest_users]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=userhistory">$vbphrase[vbplaza_history]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=mostsold">$vbphrase[vbplaza_most_sold]</a></td></tr>

<if condition="is_member_of($bbuserinfo['usergroupid'], $vboptions['vbplaza_adminusergroups'])">
<tr><td class="thead">$vbphrase[vbplaza_admin_only]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=action&amp;itemid=12">$vbphrase[vbplaza_admin_donate]</a></td></tr>
</if>

</table>
</div>
<!-- / vbplaza tools menu -->
</if>
<!-- vbPlaza end -->
C) Inside template 'MEMBERINFO':
Find:
Code:
<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>
Replace With:
Code:
<!-- vbPlaza start -->
<div class="bigusername" <if condition="$userinfo['namestyle']">style="$userinfo[namestyle]"</if>>$userinfo[musername] $userinfo[onlinestatus]</div>
<!-- vbPlaza end -->
Next Find:
Code:
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
Replace With:
Code:
<!-- vbPlaza start -->
<if condition="$userinfo['usertitle']"><div class="smallfont" <if condition="$userinfo['titlestyle']">style="$userinfo[titlestyle]"</if>>$userinfo[usertitle]</div></if>
<!-- vbPlaza end -->
Then Find:
Code:
<if condition="$vboptions['usereferrer']">
Add Above:
Code:
<!-- vbPlaza start -->
<if condition="$vboptions['vbbux_enabled']">
<div class="fieldset">
<table class="tborder" cellpadding="5" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('pointsmode')"><img id="collapseimg_pointsmode" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_pointsmode].gif" alt="" border="0" /></a>$vbphrase[vbbux_name] $vbphrase[vbbux_points]</td>
</tr>
</thead>
<tbody id="collapseobj_pointsmode" style="">
<tr>
<td class="alt1">
<div class="smallfont">$vbphrase[vbbux_points]: $userinfo[points]</div>
<div class="smallfont">$vbphrase[vbbux_bank]: $userinfo[bank]</div>
<div class="smallfont"><phrase 1="$vbphrase[vbbux_points]">$vbphrase[vbbux_total_points]</phrase>: $userinfo[totalpoints]</div>
<div class="smallfont"><a href="vbplaza.php?do=donate&amp;userid=$userinfo[userid]">$vbphrase[vbplaza_donate]</a></div>
<if condition="$show['userhistory']"><div class="smallfont"><a href="vbplaza.php?do=userhistory&amp;userid=$userinfo[userid]">$vbphrase[vbplaza_user_history]</a></div></if>
<if condition="$show['namechanges']"><br /><div class="smallfont"><a href="vbplaza.php?do=namechanges&amp;userid=$userinfo[userid]"><phrase 1="$vbphrase[username]">$vbphrase[vbplaza_view_username_change_history]</phrase></div></if>
</td>
</tr>
</tbody>
</table>
</div>
</if>

<if condition="$show['gifts']">
<div class="fieldset">
<table class="tborder" cellpadding="5" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead" colspan="4"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usergiftsmode')"><img id="collapseimg_usergiftsmode" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_usergiftsmode].gif" alt="" border="0" /></a>$vbphrase[vbplaza_gifts]</td>
</tr>
</thead>
<tbody id="collapseobj_usergiftsmode" style="">
<tr>
<td class="tcat"></td>
<td class="tcat">$vbphrase[vbplaza_sender]</td>
<td class="tcat">$vbphrase[vbplaza_message]</td>
<td class="tcat"><if condition="$show['candelete']">$vbphrase[vbplaza_delete]</if></td>
</tr>
$userinfo[gifts]
</tbody>
</table>
</div>
</if>

<if condition="$show['ribbons']">
<div class="fieldset">
<table class="tborder" cellpadding="5" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead" colspan="4"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('userribbonsmode')"><img id="collapseimg_userribbonsmode" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_userribbonsmode].gif" alt="" border="0" /></a>$vbphrase[vbplaza_ribbons]</td>
</tr>
</thead>
<tbody id="collapseobj_userribbonsmode" style="">
<tr>
<td class="tcat"></td>
<td class="tcat">$vbphrase[vbplaza_sender]</td>
<td class="tcat">$vbphrase[vbplaza_cause]</td>
<td class="tcat"><if condition="$show['candelete']">$vbphrase[vbplaza_delete]</if></td>
</tr>
$userinfo[ribbons]
</tbody>
</table>
</div>
</if>
<!-- vbPlaza end -->
D) Inside template 'forumrules':
Find:
Code:
<div><phrase 1="$htmlcodeon">$vbphrase[html_code_is_x]</phrase></div>
Add Below:
Code:
<!-- vbPlaza start -->
<if condition="$vboptions['vbbux_enabled']">
<if condition="!$show['codeonly']">
<hr />
<div><phrase 1="$vbphrase[vbbux_points]" 2="$foruminfo[points_perview]">$vbphrase[vbbux_points_perview]</phrase></div>
<div><phrase 1="$vbphrase[vbbux_points]" 2="$foruminfo[points_perthread]">$vbphrase[vbbux_points_perthread]</phrase></div>
<div><phrase 1="$vbphrase[vbbux_points]" 2="$foruminfo[points_perreply]">$vbphrase[vbbux_points_perreply]</phrase></div>
</if>
</if>
<!-- vbPlaza end -->
E): INside template 'USERCP_SHELL':
Find:
Code:
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td>
</tr>
Add Below:
Code:
<!-- vbPlaza start -->
<if condition="$vboptions['vbplaza_enabled']">
<tr>
<td class="$navclass[vbplaza]" nowrap="nowrap"><a class="smallfont" href="vbplaza.php?$session[sessionurl]do=editvbpoptions"><phrase 1="$vbphrase[vbplaza_name]">$vbphrase[edit_vbplaza_options]</phrase></a></td>
</tr>
</if>
<!-- vbPlaza end -->
end
Attached Files
File Type: zip ebux_estore-screenshots.zip (612.0 KB, 592 views)
File Type: zip psd-buttons.zip (34.8 KB, 336 views)
File Type: zip vbbuxplaza_v1.5.5.zip (661.4 KB, 447 views)
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
fuldon
Гуру
 
fuldon's Avatar
Default
1

Самая последняя версия vbBux / vbPlaza v1.5.0.1 (Points + Store System).
* Скриншоты
* Кнопки
* Сам Продукт
* Необходимые изменения в шаблонах
 
 
sabas
Знаток
 
sabas's Avatar
Default
0

Подскажите , реально ли обновиться с eBux / eStore 1.2.4 , и как это сделать , править все шаблоны ? , т.е удалять все исправления eBux / eStore , а потом править под vbBux / vbPlaza v1.5.0.1 .
 
 
Vice
Продвинутый
Хочет чего-то непонятного...
Default
0

sabas, для начала почитай описание по обновлению которое идёт в архиве с движком - там всё понятно расписано
 
 
sabas
Знаток
 
sabas's Avatar
Default
0

Vice,
Прочитал =) , разобрался , установил , теперь бы руссик на него залить , и все было бы просто гуд =)
 
 
Vice
Продвинутый
Хочет чего-то непонятного...
Default
5

Не проблема совершенно
Выкладываю поправленную версию русификации клиентской части.
Основа - перевод eBux 1.2.4 - не самая последняя версия, поэтому где-то 5-10 фраз (которые касаются новой фишки ribbons) в переводе пока нет
Attached Files
File Type: xml vBux.vPlaza.rus.1.5.1.rus.beta.xml (54.5 KB, 218 views)
 
 
sabas
Знаток
 
sabas's Avatar
Default
1

Vice,
Я где-то видел , Ты хотел сюда и графику залить , извени если ошибаюсь =)
 
 
Vice
Продвинутый
Хочет чего-то непонятного...
Default
0

sabas, нет не ошибаешься - хотел. Но графика будет несколько позже. Сейчас я занят переводом админ части. после займусь графикой
 
 
fuldon
Гуру
 
fuldon's Avatar
Default
1

Очередное обновление!
vbBux / vbPlaza v1.5.1 beta

Все файлы и изменения в верхнем посте.
 
 
markuhin
Продвинутый
Default
1

При установке продукта пишет
Quote:
Could not find phrase 'vbplaza_functions_vbplaza_not_uploaded'.
Что делать?
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off




All times are GMT +4. The time now is 09:32 PM.


Powered by vBulletin® Version PreModed
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Loading...