Jump to content
MakeWebGames

Razor42


microsocket

Recommended Posts

A new name for your game filters : limitedlives

It seems Razor42 is yet another game owning/spamming tosser that would rather link out in your games instead of actually doing some work and advertising properly.

 

proof :

Razor42 February 12, 2013 1:09:08am

Hi there!

Feel free to come check limitedlives.com out ! Brand new game been open a few days and growing quickly with constant upgrades, a small community and helpful active staff!!

 

Add limitedlives to your filter now to stop this game spamming wanker in his tracks :)

zoizo.png

Edited by Djkanna
Merged DB screenshot with original post.
Link to comment
Share on other sites

~Maybe, just maybe. If you was smart enough to block out .net, .com, .co.uk, .org, .tk and most domain suffix's you wouldn't have this problem?

Calling someone a wanker isn't going to get your point across. I know it's frustrating been spammed but you're partly to blame for allowing it.

Good luck with your crusade on letting everyone know he has bad manners.

Link to comment
Share on other sites

well aside from the screenshot of DB showing the spam....

or the fact he actually admitted it ??

 

Well there is nothing better than free advertising

would you , perhaps, like me to post the email and ip address's associated with the account he used ?

Oh thats right that would be unethical and quite possible illegal so i shall refrain from doing that...

Anyone that can read can see quite clearly he admitted doing it with his 'free advertising' response.

So i find this post of 'Show proof' not only futile but also quite ridiculous for a moderator to post.

kthnxbai.

Link to comment
Share on other sites

well aside from the screenshot of DB showing the spam....

or the fact he actually admitted it ??

would you , perhaps, like me to post the email and ip address's associated with the account he used ?

Oh thats right that would be unethical and quite possible illegal so i shall refrain from doing that...

Anyone that can read can see quite clearly he admitted doing it with his 'free advertising' response.

So i find this post of 'Show proof' not only futile but also quite ridiculous for a moderator to post.

kthnxbai.

He only admitted it to the post prior to this one, the quote is rather sarcastic.

You provided a screenshot of the DB, which the only identifying information is the game name.

Back to the point: The screenshot, along with the quote doesn't equal proof, it just means someone is spamming your game with Razors game.

Which anyone that knows Razor, knows the game. ;)

Now that he's admitted it means you have proof, but it brings up a new question: Why did you retaliate by spamming his game and then post this thread?

Link to comment
Share on other sites

eh, who cares whom spams whom's game with their game link. This is so old!!

If a player is dedicated to your game they will stay at your game, if they are not then they will eventually leave to another game, the link to these games gets around regardless of someone spamming it in your game. Better just to make a section in your forum where people can spam their game links, then your players will stay true to your game, knowing your open minded to other games, and not just yours.

Link to comment
Share on other sites

eh, who cares whom spams whom's game with their game link. This is so old!!

If a player is dedicated to your game they will stay at your game, if they are not then they will eventually leave to another game, the link to these games gets around regardless of someone spamming it in your game. Better just to make a section in your forum where people can spam their game links, then your players will stay true to your game, knowing your open minded to other games, and not just yours.

This might be true in a way, buuuut if Razor was highered by Microsocket to do some work on the game and then he spammed the game, then that is malpractice and I would not think about highering Razor ever. He just did not act as a proffessional and that is something that is important to me and many others.

Link to comment
Share on other sites

  • 2 months later...

Your coding sucks!! :D hows that for collaboration?

here i'll share it...

First step: Add table to database, columns are:
1) poster int(12)
2) recipient int(12)
3) Comment varchar(255)

Second step: Access user table and insert a column called "youtube" Varchar (20)

////*****///// This is the part of comment.

------ Create a file called comment.php with the following PHP.
<?php

include "globals.php";
if (!$_GET['user'])
{
echo "Invalid use of file.";
}
else
{
function str_replace_assoc(array $replace, $subject) { 
	return str_replace(array_keys($replace), array_values($replace), $subject);    
}

$exist = mysql_query("SELECT userid FROM users WHERE userid = " . $_GET['user'] . "");
if (mysql_num_rows($exist) < 1)
{
	echo "Invalid user.";
}
else
{
	if (strlen($_POST['comment']) < 1)
	{
		echo "Please enter a comment.";
		exit;
	}
	echo "Comment posted.";
	$replace = array( 
	'[img]' => '<img src=',
	'[url]' => '<a href=',
	'[b]' => '<strong>',
	'[u]' => '<u>',
	'
[center]' => '<center>',
	'[/img]' => '>',
	'[/url]' => '>I posted A Link</a>',
	'[/b]' => '</strong>',
	'[/u]' => '</u>',
	'[/center]
' => '</center>',
	);
	$text = $_POST['comment'];
	echo  str_replace_assoc($replace, $text);
	if (!mysql_query("INSERT INTO comments VALUES(" . $ir['userid'] . ", " . $_GET['user'] . ", '" . str_replace_assoc($replace, $text) . "')"))
	{
		echo "<br/>" . mysql_error();
	}
}
}

?>

Now somewhere in viewuser.php post the following lines.

$comments = mysql_query("SELECT * FROM comments JOIN users ON comments.poster = users.userid WHERE comments.recipient = " . $_GET['u'] . "");
if (mysql_num_rows($comments) < 1)
{
echo "No Comments";
}
else
{
while ($c = mysql_fetch_array($comments))
{

	echo "<a href='viewuser.php?u=" . $c['poster'] . "'>" . $c['username'] . "</a><br/>";
	echo "    " . $c['comment'] . "<br/><br/>";
}
}

//////*******////// Now for the youtube portion
This goes in viewuser.php also. Wherever you would like your youtube video to pop up for users.

if ($r['youtube'])
{
echo '<iframe width="560" height="315" src="http://www.youtube.com/embed/'. $r['youtube'] .'" frameborder="0" allowfullscreen></iframe>';
}
else
{
echo "No Video";
}

The only way you will be able to make this work is if you find the query finding the users information on viewuser.php, and add `youtube` to the user portion of query.

This will go in preferences.php

Switch function stuff:
case 'youtube': youtube(); break;
case 'youtubedone': youtubedone(); break;

The actual functions:

function youtube()
{
global $ir,$c,$userid,$h;
echo "What video would you like?
<form method='post' action='preferences.php?action=youtubedone'>
	Video ID (EX:9_Ub6pW71Zs) <input type='text' name='ID'> <input type='submit' value='Post Video'>
</form>

";
}
function youtubedone()
{
global $ir,$c,$userid,$h;
if (strlen($_POST['ID']) < 1)
{
	mysql_query("UPDATE users SET youtube = '' WHERE userid = " . $ir['userid'] . "");
	echo "Video removed.";
	exit;
}
if (strlen($_POST['ID']) > 12)
{
	echo "Not a real video!";
	exit;
}
else
{
	mysql_query("UPDATE users SET youtube = '" . $_POST['ID'] . "' WHERE userid = " . $ir['userid'] . "");
	echo "Video posted!";
}
}

All you must do now, is post the link that directs to the youtube menu on your list of links (preferences.php?action=youtube)

 

lol if you wanna use this crap go for it... however you may want to get better coder for this type of modification or do my alternative which was just looking in previous forums and such, found the old bbcode view user mod and since the bbcode that is used by the newer v2 codes i just replaced it with that, also google helped with embedding the vids for utube ;)

you want to know the worst part??

well he charged 60$ for this crap lol i was being nice and trying to see what he was actually capable of and he came up with this junk

so if you would like to have a coder then i wouldn't suggest getting him however i have learned from this experience and would like to share it with others to help save them the troubles

Link to comment
Share on other sites

I don't code no more my friend so if you are looking for a coder don't come to me :) and you say my coding a crap yet this was not the first time you've hired me for coding right?

And releasing people's paid work or the whole forum, was this not what people were talking about as one of the issues with this place?

Link to comment
Share on other sites

I don't code no more my friend so if you are looking for a coder don't come to me :) and you say my coding a crap yet this was not the first time you've hired me for coding right?

And releasing people's paid work or the whole forum, was this not what people were talking about as one of the issues with this place?

He paid for it, so it is actually his right to post it...

Link to comment
Share on other sites

  • 1 month later...
I always finish one task before I start another, that's just the way I like to work.

Sadly, You still haven't bother to message me your way is very time wasting as I needed it done with in the day after I assign you to the task.

Here's a head up for you in the future let whomever hires you know what you are working on and how long it would take before taking the new task.

Luckily I never depend on 1 unprofessional developer; the task is done don't bother to reply back to the message.

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...