Jump to content
MakeWebGames

[mccode] TownView [$5.00]


Recommended Posts

Hello all.

Description:

Well its simple, it allows you to view all the people in your town. This is mainly used for gamers that like to attack.

Viewable:

Can be viewed on my game www.violent-chaos.com

Price: $5

Copies: 4 out of 5

Comes with townview.php and that is all thats needed.

 

How to purchase:

Contact me via here or on msn [email protected].

 

Just need to change the include("globals.php"); at the top to work with v1.

Link to comment
Share on other sites

Re: TownView [$5]

But absolute zero you were charging at first $10 for the page notifications, PLUS your script is just useless & why?

I wont go to every page to just add a new page tutorial.

Unlike mine, you got the admin panel and add / delete / edit any time you want.

Not to mention i like how your copying TC, using there images, there style. Very nice try tho.

Link to comment
Share on other sites

Re: TownView [$5]

 

But absolute zero you were charging at first $10 for the page notifications, PLUS your script is just useless & why?

I wont go to every page to just add a new page tutorial.

Unlike mine, you got the admin panel and add / delete / edit any time you want.

Not to mention i like how your copying TC, using there images, there style. Very nice try tho.

Again, I did not copy the image from TC. Light bulbs are light bulbs and have been used in the past to showcase an event where you/a character learns something or has an idea. Unless you are completely oblivious to that, then I would understand.

Second, Torncity has used a lot of ideas and I'm sure you've never used any of them having MCcodes and all. Betcha you just deleted everything Torncity'ish on your site and started fresh. Heck, you probably got this idea from the little message it gives you on profiles in Torncity when someone is in another town/going there.

Link to comment
Share on other sites

Guest Anonymous

Re: TownView [$5]

Hmm, 16c a line ... Now, lets see what I can come up with ;) 1+ million line application :-" :D

Link to comment
Share on other sites

Re: TownView [$5]

 

$5 for something as basic as...

 

<?php
// Add your header files here..

echo '	<table width="50%">
		<tr>
			<th width="33%">Name</th>
			<th>Level</th>
			<th width="33%">Attack?</th>
		</tr>';

$this_q = sprintf('SELECT username,userid,level FROM `users` WHERE `location` = ("%u")', $ir['location']);
$this_qu = mysql_query($this_q) or die (mysql_error());
if(!mysql_num_rows($this_qu))
{
	echo 'You are the only person in this location';
}
else
{
	$ud = mysql_fetch_object($this_qu);
	echo '	<tr>
				<td>' . $ud->username . ' [' . $ud->userid . ']</td>
				<td>' . number_format($ud->level, "") . '</td>
				<td>[url="attack.php?ID=' . $ud->userid . '"]Attack[/url]</td>
			</tr>';

}
echo '</table>';

// End page part
?>

 

[me=LostOne]sighs[/me]

Just what I was about to do xD

Why rip people off for like 10 lines of coding? and 1 basic query

Link to comment
Share on other sites

Re: TownView [$5]

 

$5 for something as basic as...

 

<?php
// Add your header files here..

echo '	<table width="50%">
		<tr>
			<th width="33%">Name</th>
			<th>Level</th>
			<th width="33%">Attack?</th>
		</tr>';

$this_q = sprintf('SELECT username,userid,level FROM `users` WHERE `location` = ("%u")', $ir['location']);
$this_qu = mysql_query($this_q) or die (mysql_error());
if(!mysql_num_rows($this_qu))
{
	echo 'You are the only person in this location';
}
else
{
	$ud = mysql_fetch_object($this_qu);
	echo '	<tr>
				<td>' . $ud->username . ' [' . $ud->userid . ']</td>
				<td>' . number_format($ud->level, "") . '</td>
				<td>[url="attack.php?ID=' . $ud->userid . '"]Attack[/url]</td>
			</tr>';

}
echo '</table>';

// End page part
?>

 

[me=LostOne]sighs[/me]

<3 you Lost

Link to comment
Share on other sites

Re: TownView [$5]

Well lost one you are off topic.

Mine has 6 reasons why its better.

1.- It dont show everyone in 1 list = no lag

2.- It will say what money, level, gender you got / are.

3.- It has if you are online or not.

4.- It shows if you are in jail or not.

5.- It shows if you are in hospital or not.

6.- If you are not in hospital / jail then you cant attack them.

So please lost one piss off :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...