Fake Users

El Intocable

New Member
is there a way to change the number of Users ever Online?
The reason I ask is bcause I have a hack install that can put as many users online as I want in my forum but the Most users ever onlinenever change. Is it a way for me to do or add a # manually?

That # is made from a link at forumhome, is it posible by removing that link and adding my custom number instead?
 
I believe that code is here

Code:
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
	<tr>
		<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
	</tr>
</thead>
<span>$template_hook[forumhome_wgo_pos1]</span>

<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
	<tr>
		<td class="thead" colspan="2">
			<a style="float:$stylevar[align=right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
			<a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
		</td>
	</tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
	<tr>
		<td class="alt2"><a href="online.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
		[COLOR="Red"]<td class="alt1" width="100%">
			<div class="smallfont">
				<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
				<div>$activeusers</div>
			</div>
		</td>[/COLOR]
	</tr>
</tbody>
<!-- end logged-in users -->
 
I guess you are using FAKE USER Mod for adding fake users but that does not have option for changing Most user online.

For changing same use the FAKE COMMUNITY STATISTICS. it is given below. By this not only you can add fake users but also threads and posts. After installing go to vboptions and then FAKE COMMUNITY STATISTICS OPTIONS and then scroll to last option i.e, DATE AND TIME SWICTH. :)

http://www.vbteam.info/2208-post2.html
 
mastram said:
I guess you are using FAKE USER Mod for adding fake users but that does not have option for changing Most user online.

For changing same use the FAKE COMMUNITY STATISTICS. it is given below. By this not only you can add fake users but also threads and posts. After installing go to vboptions and then FAKE COMMUNITY STATISTICS OPTIONS and then scroll to last option i.e, DATE AND TIME SWICTH. :)

http://www.vbteam.info/2208-post2.html

Nice TY, I have that Mod installed too at my site but forgot to look at it I guess I overlook. lol
TY
 
ok, i have a question though, is it posible to do this manually instead? it should be a way to do this dont you think? like maybe editing a file in the includes folder like this php file
Code:
adminfunctions_template.php
there is the data for thatbut dunno haw can I edit it to not show the actual number of members but show the any number I want it to be
 
Back
Top