Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Fake User Details »»
Fake User
Version: 2.01, by Atakan KOC Atakan KOC is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.8.x Rating:
Released: 10-27-2008 Last Update: 02-25-2009 Installs: 270
Uses Plugins Template Edits Auto-Templates
 
No support by the author.

Fake User

Installation
  • Download the product file below and import it into your vBulletin via the product manager.
Products to Install: 1
Plugins Included: 1
Setting Group : 1
Setting : 3
Phrases :
7
Files to Upload: 0
Files to Edit: 0
New Templates: 0
Template Edits: 0

What this hack does?
This hack adds members to your online list from your already registered users.

How will I arrange the total users?
Admin Control Panel > Fake Users > Add Member > You can increase or decrease the number.

What should I do for the Guest Number?
Admin Control Panel > Fake Users > Visitors> You can increase or decrease the number.

1.0.0 Initial Version.
2.0.0 Vbulletin 3.8.0
2.0.1 comma error corrected

Download Now

File Type: xml product-fuser.xml (3.4 KB, 2199 views)

Screenshots

File Type: jpg fuser1.jpg (44.5 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #142  
Old 06-02-2013, 01:46 PM
crouzmind's Avatar
crouzmind crouzmind is offline
 
Join Date: Feb 2009
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes this mod have many bugs i have installed it in vb 3.8.7 patch 3 and i noticed that some of problems .

1 > its show the fake user's separate with the real online users . see the attachment i have red mark it .

2 > its show the fake usergroup only the first group from the setting menu . if you type 2.11.12.13 etc its show only the user's from group 2 only and if you type 11,2,13,12 then its show only 11 . its mean its show only the first group from setting .

any one have solution of these issue's ?
Attached Images
File Type: jpg result.jpg (180.9 KB, 0 views)
File Type: jpg setting.jpg (65.1 KB, 0 views)
Reply With Quote
  #143  
Old 06-05-2013, 04:31 AM
TheInsaneManiac TheInsaneManiac is offline
 
Join Date: Feb 2008
Posts: 1,360
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any word on 4.20?
Reply With Quote
  #144  
Old 08-11-2013, 07:00 AM
WebMonster2013 WebMonster2013 is offline
 
Join Date: May 2013
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cky47 View Post
Fixed this mod for you... now displays correctly in 3.8.1 with commas. Enjoy

Code:
<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="fuser" active="1">
	<title>Fake Users</title>
	<description>Fake Users</description>
	<version>2.0.1</version>
	<url>http://www.tvpano.com/</url>
	<versioncheckurl />
	<apm_releasedate>1223874000</apm_releasedate>
	<apm_author>H.Atakan KOC</apm_author>
	<apm_relatedurl />
	<apm_extrainfo>http://www.tvpano.com/</apm_extrainfo>
	<apm_extraedit />
	<dependencies>
	</dependencies>
	<codes>
	</codes>
	<templates>
	</templates>
	<plugins>
		<plugin active="1" executionorder="5">
			<title>Fake Users</title>
			<hookname>forumhome_complete</hookname>
			<phpcode><![CDATA[if ($vbulletin->options['xfakeonoff']) { 
$numbervisible2 = 0;
if ($vbulletin->options['xfakemn']>0)
{
$xsayi1 = $vbulletin->options['xfakemn'];
$xsayi2 = $vbulletin->options['xfakeug'];
$forumusers = $db->query("SELECT *,
IF(displaygroupid=0, usergroupid, displaygroupid) AS displaygroupid
 FROM " . TABLE_PREFIX . "user WHERE usergroupid = '$xsayi2' ORDER BY RAND() LIMIT $xsayi1");
while ($loggedin = $db->fetch_array($forumusers))
{
$numbervisible2++;
fetch_musername($loggedin); 
eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');

}
}
$totalonline = $totalonline + $numbervisible2 + $vbulletin->options['xfakemv'];
$numberguest = $numberguest + $vbulletin->options['xfakemv'];
$numberregistered = $numberregistered + $numbervisible2;
unset($forumusers, $loggedin, $numbervisible2, $xsayi1);
$db->free_result($forumusers);
}]]></phpcode>
		</plugin>
	</plugins>
	<phrases>
		<phrasetype name="vBulletin Settings" fieldname="vbsettings">
			<phrase name="setting_xfakemn_desc" date="0" username="" version=""><![CDATA[xx member]]></phrase>
			<phrase name="setting_xfakemn_title" date="0" username="" version=""><![CDATA[Add member number]]></phrase>
			<phrase name="setting_xfakemv_desc" date="0" username="" version=""><![CDATA[xx visitor]]></phrase>
			<phrase name="setting_xfakemv_title" date="0" username="" version=""><![CDATA[Add visitor number]]></phrase>
			<phrase name="setting_xfakeonoff_desc" date="0" username="" version=""><![CDATA[Mods on= yes /off = no]]></phrase>
			<phrase name="setting_xfakeonoff_title" date="0" username="" version=""><![CDATA[Fake Users On/Off]]></phrase>
			<phrase name="setting_xfakeug_desc" date="1211186206" username="Atakan KOC" version="1.0.0"><![CDATA[User Groups<br /><br />e.g 1,5,8]]></phrase>
			<phrase name="setting_xfakeug_title" date="1211186206" username="Atakan KOC" version="1.0.0"><![CDATA[Select User Groups]]></phrase>
			<phrase name="settinggroup_fuserx" date="0" username="" version=""><![CDATA[Fake Users]]></phrase>
		</phrasetype>
	</phrases>
	<options>
		<settinggroup name="fuserx" displayorder="65535">
			<setting varname="xfakeonoff" displayorder="10">
				<datatype>boolean</datatype>
				<optioncode>yesno</optioncode>
				<defaultvalue>1</defaultvalue>
			</setting>
			<setting varname="xfakemn" displayorder="20">
				<datatype>number</datatype>
				<defaultvalue>100</defaultvalue>
			</setting>
			<setting varname="xfakemv" displayorder="30">
				<datatype>number</datatype>
				<defaultvalue>50</defaultvalue>
			</setting>
			<setting varname="xfakeug" displayorder="40">
				<datatype>free</datatype>
				<defaultvalue>2</defaultvalue>
			</setting>
		</settinggroup>
	</options>
	<helptopics>
	</helptopics>
	<cronentries>
	</cronentries>
	<faqentries>
	</faqentries>
</product>
thank you, works great
Reply With Quote
  #145  
Old 06-04-2014, 07:31 PM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does it work for vb4?
Thank you.
Reply With Quote
  #146  
Old 07-08-2014, 10:28 AM
Homie22 Homie22 is offline
 
Join Date: Mar 2008
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does this work with vb 4
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 07:27 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05163 seconds
  • Memory Usage 2,299KB
  • Queries Executed 21 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (5)postbit
  • (4)postbit_attachment
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete