 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
DougieWuggie How do I cheat?
Reputation: -1
Joined: 11 Feb 2012 Posts: 0
|
Posted: Sat Feb 11, 2012 10:15 pm Post subject: |
|
|
| Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It's to emphasize the hilarity of his stupidity. Thanks for looking like a completely tit, by assuming I was trying to make my posts funnier. They're funny as it is.  |
You are attempting to troll with no audience. GG kid. |
LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL
Are you fucking serious? You honestly believe you need an audience to troll? Jesus Christ, you are just as gormless as the rest of CEF.  |
I notice you really like to reference the religion Christianity. Why don't you go attempt to troll a Christian forum? |
That doesn't even address my retort pal. You're right though. Even a Christian Forum would be more of a competition than this fucking site. At least that have a shred of intelligence. However, I'm starting to warm up to this place. You guys are pretty cool! |
|
| Back to top |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
|
| Back to top |
|
 |
DougieWuggie How do I cheat?
Reputation: -1
Joined: 11 Feb 2012 Posts: 0
|
Posted: Sat Feb 11, 2012 10:24 pm Post subject: |
|
|
| Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It's to emphasize the hilarity of his stupidity. Thanks for looking like a completely tit, by assuming I was trying to make my posts funnier. They're funny as it is.  |
You are attempting to troll with no audience. GG kid. |
LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL
Are you fucking serious? You honestly believe you need an audience to troll? Jesus Christ, you are just as gormless as the rest of CEF.  |
I notice you really like to reference the religion Christianity. Why don't you go attempt to troll a Christian forum? |
That doesn't even address my retort pal. You're right though. Even a Christian Forum would be more of a competition than this fucking site. At least that have a shred of intelligence. However, I'm starting to warm up to this place. You guys are pretty cool! |
I'm going to quit replying to wannabe troll. Any more reactions just feed him greatly. I think it is best we just ignore him, or just get SF to drop the ban hammer like he did to the professor. |
The funny thing is, it was a member from these forums that brought me here. It's equally funny that a member from these forums posted on GameKiller, initiating an invasion on the forums. LOLOLOLOL
You seem pretty mad pal. Do you want a muscle relaxer? |
|
| Back to top |
|
 |
SeanWithACapitalS How do I cheat?
Reputation: 0
Joined: 11 Feb 2012 Posts: 0 Location: Killingames
|
Posted: Sat Feb 11, 2012 10:39 pm Post subject: |
|
|
| Sterling Archer wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It does if your name is DougieWuggie
LOLOLOLOL |
Bad, joke is bad. |
|
| Back to top |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
Posted: Sat Feb 11, 2012 10:43 pm Post subject: |
|
|
/r/ing ignore script
| Code: | // ==UserScript==
// @name phpBB User Hide (Firefox 3 compatible)
// @include */viewtopic.php*
// @description Hide posts of the selected users on any phpBB system. Usage: On topic view [X] appears before every username. Click it to hide the selected user. This version works with Firefox 3. Original author of this script is unknown, so please tell me, if you know.
// @exclude
// ==/UserScript==
(function() {
// Get stored hidden users from cookie
var users = [];
var cookieName = "phpUserHide";
for (var i = 0; i < document.cookie.split('; ').length; i++) {
var oneCookie = document.cookie.split('; ')[i].split('=');
if (oneCookie[0] == cookieName) {
users = oneCookie[1].split(', ');
break;
}
}
// Cursor functions
var curPointer = function(event) {
event.target.style.cursor = 'pointer';
event.preventDefault();
};
var curDefault = function(event) {
event.target.style.cursor = 'default';
event.preventDefault();
};
// Add or remove a user from the cookie
var addRemoveUser = function(event) {
// Parse current cookie
for(j = 0; j < document.cookie.split('; ').length; j++ ) {
var oneCookie = document.cookie.split('; ')[j].split('=');
if (oneCookie[0] == cookieName) {
users = oneCookie[1].split(', ');
break;
}
}
var user = escape(event.target.nextSibling.innerHTML)
notFound = true;
for (var j = 0; j < users.length; j++) {
if (users[j] == user) {
users.splice(j, 1);
notFound = false;
}
}
if (notFound)
users.push(user);
if (users.length > 0) {
var date = new Date();
var days = 365;
date.setTime(date.getTime() + (days*24*60*60*1000));
var expires = '; expires=' + date.toGMTString();
var value = users.join(', ');
document.cookie = cookieName + '=' + value + expires + '; ,ath=/';
} else {
document.cookie = cookieName + '=;expires=Thu, 01-Jan-1970 00:00:01 GMT; ,ath=/';
}
window.alert(unescape(user) + ' has been ' + (notFound ? 'added to' : 'removed from')
+ ' your hide list\n'
+ 'You must refresh the page to view the changes.');
event.preventDefault();
};
// Toggle display of user's post
var togglePost = function(event) {
var displayState = event.target.getAttribute('displaystate');
if (displayState == 'none')
displayState = '';
else
displayState = 'none';
event.target.setAttribute('displaystate', displayState);
containingRow = event.target.parentNode.parentNode;
var innerTags = containingRow.getElementsByTagName('*');
for (var i = 0; i < innerTags.length; i++) {
var tagClass = innerTags[i].getAttribute('class');
if (tagClass == 'postbody' || tagClass == 'postsig'
|| tagClass == 'postdetails' || innerTags[i].tagName == 'TABLE')
innerTags[i].style.display = displayState;
}
event.preventDefault();
};
// Toggle display of user's quote
var toggleQuote = function(event) {
var displayState = event.target.getAttribute('displaystate');
if (displayState == 'none')
displayState = 'table-row';
else
displayState = 'none';
event.target.setAttribute('displaystate', displayState);
// Jump to parent row
var containingRow = event.target.parentNode.parentNode.parentNode.parentNode.nextSibling;
// Find containing row
while (containingRow.nodeType != 1)
containingRow = containingRow.nextSibling;
containingRow.style.display = displayState;
event.preventDefault();
};
// Find all the usernames in the page
var results = document.evaluate("//span[@class='name']/b|//span[@class='name']/strong", document, null,
X ,athResult.ANY_TYPE, null);
var resultNodes = [];
var aResult;
while (aResult = results.iterateNext())
resultNodes.push(aResult);
// Loop through every user post on the page
for (var i in resultNodes) {
var containingRow = resultNodes[i].parentNode.parentNode.parentNode;
// Format whitespace
var user = escape(resultNodes[i].innerHTML);
// Flag whether the user is in our hide list
var notFound = true;
for (var j = 0; j < users.length; j++) {
if (users[j] == user) {
notFound = false;
}
}
// Add relevant event handlers to user's name and a toggler node
var toggler = document.createElement('span');
toggler.setAttribute('title', "click to add or remove this user from your hide list");
toggler.appendChild(document.createTextNode('[X] '));
toggler.style.fontSize = "7pt";
toggler.addEventListener('mouseover', curPointer, true);
toggler.addEventListener('mouseout', curDefault, true);
toggler.addEventListener('click', addRemoveUser, true);
resultNodes[i].parentNode.insertBefore(toggler, resultNodes[i]);
// If this user isn't in our hide list, skip to the next user
if (notFound)
continue;
// Find the first element node (td) in the containing row
var elem = containingRow.firstChild;
while (elem.nodeType != 1)
elem = elem.nextSibling;
// Create a span to control toggling
var span = document.createElement('span');
span.appendChild(document.createTextNode('Toggle Display'));
span.appendChild(document.createElement('br'));
span.setAttribute('class', 'gensmallbold');
span.style.textDecoration = 'underline';
span.setAttribute('displaystate', 'none');
span.addEventListener('mouseover', curPointer, true);
span.addEventListener('mouseout', curDefault, true);
span.addEventListener('click', togglePost, true);
// Insert the span after the username and before the <br>
elem.insertBefore(span, elem.firstChild.nextSibling.nextSibling);
// Insert a <br> after the username and before the span
elem.insertBefore(document.createElement('br'), elem.firstChild.nextSibling.nextSibling);
var innerTags = containingRow.getElementsByTagName('*');
for (var i = 0; i < innerTags.length; i++) {
var tagClass = innerTags[i].getAttribute('class');
if (tagClass == 'postbody' || tagClass == 'postsig'
|| tagClass == 'postdetails' || innerTags[i].tagName == 'TABLE')
innerTags[i].style.display = 'none';
}
}
// Find all the usernames quoted in the page
var results = document.evaluate("//td[@class='quote']/parent::*/preceding-sibling::*/td/span/b|"
+ "//td[@class='quote']/parent::*/preceding-sibling::*/td/span/strong", document, null,
X ,athResult.ANY_TYPE, null);
var resultNodes = [];
var aResult;
while (aResult = results.iterateNext())
resultNodes.push(aResult);
// Loop through every user quote on the page
for (var i in resultNodes) {
var containingRow = resultNodes[i].parentNode.parentNode.parentNode.nextSibling;
while (containingRow.nodeType != 1)
containingRow = containingRow.nextSibling;
// Find username
var usermatch = resultNodes[i].innerHTML.match(/(.*) wrote:$/);
if (usermatch)
var user = escape(usermatch[1]);
else
continue;
// Flag whether the user is in our hide list
var notFound = true;
for (var j = 0; j < users.length; j++) {
if (users[j] == user) {
notFound = false;
}
}
// If this user isn't in our hide list, skip to the next user
if (notFound)
continue;
// Create a span to control toggling
var span = document.createElement('span');
span.appendChild(document.createElement('br'));
span.appendChild(document.createTextNode('Toggle Display'));
span.setAttribute('class', 'gensmallbold');
span.style.textDecoration = 'underline';
span.setAttribute('displaystate', 'none');
span.addEventListener('mouseover', curPointer, true);
span.addEventListener('mouseout', curDefault, true);
span.addEventListener('click', toggleQuote, true);
resultNodes[i].appendChild(span);
// Hide the quote
containingRow.style.display = 'none';
}
})(); |
_________________
FLAME FLAME FLAME!!!@@@ |
|
| Back to top |
|
 |
Maes Advanced Cheater
Reputation: 10
Joined: 09 Apr 2009 Posts: 50
|
Posted: Sat Feb 11, 2012 11:56 pm Post subject: |
|
|
| Talix wrote: | | DougieWuggie wrote: | | Sterling Archer wrote: | | DougieWuggie wrote: | | init as89d7sa98dsadasdfsa wrote: | | Fagpals to the rescue! |
Thanks for answering my question. LOLOLOLOLOLOL |
All I know is that this faggot needs to leave. |
Holy shit, that's all you know? Shit pal, you should definitely broaden your mind. To only know that some faggot needs to leave, makes you a pretty shitty excuse for a human.
I suggest starting slow. Work your way up, and you might just be as smart as Shrooms. Which isn't very smart. LOLOLOLOL |
i like you. |
_________________
Account reclaimed by former owner? |
|
| Back to top |
|
 |
Dark‮‮ Advanced Cheater
Reputation: 5
Joined: 16 Jun 2011 Posts: 79 Location: <3
|
Posted: Sun Feb 12, 2012 12:04 am Post subject: |
|
|
| Fuck you Alreiger, beaner lover. |
|
| Back to top |
|
 |
Kavvman Master Cheater
Reputation: 2
Joined: 17 Apr 2004 Posts: 316
|
Posted: Sun Feb 12, 2012 5:16 am Post subject: |
|
|
DougieWuggie: oh nobody likes you kid gtfo you don't want to be another talix. don't listen to talix, he just wants to fuck the rectum out of you _________________
... |
|
| Back to top |
|
 |
emil Expert Cheater
Reputation: 41
Joined: 06 Dec 2008 Posts: 239
|
Posted: Sun Feb 12, 2012 6:55 am Post subject: |
|
|
| this is getting hilarious |
|
| Back to top |
|
 |
..... Expert Cheater
Reputation: 59
Joined: 23 Oct 2010 Posts: 119
|
Posted: Sun Feb 12, 2012 7:27 am Post subject: |
|
|
| Talix wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It's to emphasize the hilarity of his stupidity. Thanks for looking like a completely tit, by assuming I was trying to make my posts funnier. They're funny as it is.  |
You are attempting to troll with no audience. GG kid. |
LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL
Are you fucking serious? You honestly believe you need an audience to troll? Jesus Christ, you are just as gormless as the rest of CEF.  |
I notice you really like to reference the religion Christianity. Why don't you go attempt to troll a Christian forum? |
That doesn't even address my retort pal. You're right though. Even a Christian Forum would be more of a competition than this fucking site. At least that have a shred of intelligence. However, I'm starting to warm up to this place. You guys are pretty cool! |
please do not think that Sterling, init, or Tebow/Shot are reasonable samples of this site.
they're like, our worst members. |
Coming from the person that collects child pornography on his computer as a hobby. |
|
| Back to top |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
Posted: Sun Feb 12, 2012 11:01 am Post subject: |
|
|
| Talix wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It's to emphasize the hilarity of his stupidity. Thanks for looking like a completely tit, by assuming I was trying to make my posts funnier. They're funny as it is.  |
You are attempting to troll with no audience. GG kid. |
LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL
Are you fucking serious? You honestly believe you need an audience to troll? Jesus Christ, you are just as gormless as the rest of CEF.  |
I notice you really like to reference the religion Christianity. Why don't you go attempt to troll a Christian forum? |
That doesn't even address my retort pal. You're right though. Even a Christian Forum would be more of a competition than this fucking site. At least that have a shred of intelligence. However, I'm starting to warm up to this place. You guys are pretty cool! |
please do not think that Sterling, init, or Tebow/Shot are reasonable samples of this site.
they're like, our worst members. |
Well, if you have the world's best processor, but you only have 1mb of ram, it would be shit, because it is the worst that is counted. _________________
FLAME FLAME FLAME!!!@@@ |
|
| Back to top |
|
 |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Sun Feb 12, 2012 12:38 pm Post subject: |
|
|
| itt: tards |
|
| Back to top |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
Posted: Sun Feb 12, 2012 12:43 pm Post subject: |
|
|
| asciicat wrote: | | itt: tards |
And you are also one of them. _________________
FLAME FLAME FLAME!!!@@@ |
|
| Back to top |
|
 |
Dark‮‮ Advanced Cheater
Reputation: 5
Joined: 16 Jun 2011 Posts: 79 Location: <3
|
Posted: Sun Feb 12, 2012 1:11 pm Post subject: |
|
|
| Talix wrote: | | Tebow wrote: | | Talix wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | | DougieWuggie wrote: | | Tebow wrote: | "LOLOLOLOL"
I guess that makes every post funnier, right? |
It's to emphasize the hilarity of his stupidity. Thanks for looking like a completely tit, by assuming I was trying to make my posts funnier. They're funny as it is.  |
You are attempting to troll with no audience. GG kid. |
LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL
Are you fucking serious? You honestly believe you need an audience to troll? Jesus Christ, you are just as gormless as the rest of CEF.  |
I notice you really like to reference the religion Christianity. Why don't you go attempt to troll a Christian forum? |
That doesn't even address my retort pal. You're right though. Even a Christian Forum would be more of a competition than this fucking site. At least that have a shred of intelligence. However, I'm starting to warm up to this place. You guys are pretty cool! |
please do not think that Sterling, init, or Tebow/Shot are reasonable samples of this site.
they're like, our worst members. |
Well, if you have the world's best processor, but you only have 1mb of ram, it would be shit, because it is the worst that is counted. |
this analogy is retarded because it implies that you are constrained to the community in such a fashion |
You don't know what you're talking about. You spit out dumbass every-time you post. |
|
| Back to top |
|
 |
Dark‮‮ Advanced Cheater
Reputation: 5
Joined: 16 Jun 2011 Posts: 79 Location: <3
|
Posted: Sun Feb 12, 2012 1:26 pm Post subject: |
|
|
| El sopapo de mi madre es muy delicioso. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|