Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Mhm.
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Mon Dec 21, 2009 11:48 pm    Post subject: Mhm. Reply with quote

Fresh to death like I got dressed in a coffin.
_________________
Back to top
View user's profile Send private message MSN Messenger
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Tue Dec 22, 2009 12:38 pm    Post subject: Reply with quote

MHM!
_________________
Back to top
View user's profile Send private message MSN Messenger
DURAN
Newbie cheater
Reputation: 14

Joined: 19 Apr 2007
Posts: 16
Location: The Netherlands

PostPosted: Tue Dec 22, 2009 12:39 pm    Post subject: Reply with quote

I'd hit it.
Back to top
View user's profile Send private message
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Tue Dec 22, 2009 12:40 pm    Post subject: Reply with quote

Plz
_________________
Back to top
View user's profile Send private message MSN Messenger
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Tue Dec 22, 2009 11:21 pm    Post subject: Reply with quote

BUMPING THIS ALWAYS AND FOREVER
_________________
Back to top
View user's profile Send private message MSN Messenger
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Wed Dec 23, 2009 3:12 pm    Post subject: Reply with quote

Yup.
_________________
Back to top
View user's profile Send private message MSN Messenger
Lamer17
How do I cheat?
Reputation: 2

Joined: 15 Oct 2007
Posts: 0

PostPosted: Wed Dec 23, 2009 3:13 pm    Post subject: Reply with quote

whos the girl in ur sig/av
Back to top
View user's profile Send private message
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Wed Dec 23, 2009 3:14 pm    Post subject: Reply with quote

Do you always have to put in the purple color bbcode, or does it automatically do it for you?
_________________
Brillia wrote:
I FUCKING FUCK SEX
Back to top
View user's profile Send private message Send e-mail
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Wed Dec 23, 2009 3:53 pm    Post subject: Reply with quote

+RepMe wrote:
Do you always have to put in the purple color bbcode, or does it automatically do it for you?


Attached



Untitled-1.jpg
 Description:
 Filesize:  107.49 KB
 Viewed:  2854 Time(s)

Untitled-1.jpg



_________________
Back to top
View user's profile Send private message MSN Messenger
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Wed Dec 23, 2009 3:54 pm    Post subject: Reply with quote

xV wrote:
+RepMe wrote:
Do you always have to put in the purple color bbcode, or does it automatically do it for you?


Attached

how do you add it?

_________________
Brillia wrote:
I FUCKING FUCK SEX
Back to top
View user's profile Send private message Send e-mail
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Wed Dec 23, 2009 3:55 pm    Post subject: Reply with quote

It's a grease monkey script Cris made for me awhile back.
_________________
Back to top
View user's profile Send private message MSN Messenger
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Wed Dec 23, 2009 3:56 pm    Post subject: Reply with quote

xV wrote:
It's a grease monkey script Cris made for me awhile back.
can you release it?
_________________
Brillia wrote:
I FUCKING FUCK SEX
Back to top
View user's profile Send private message Send e-mail
xV
I post too much
Reputation: 1

Joined: 03 Jan 2008
Posts: 3783
Location: Seattle

PostPosted: Wed Dec 23, 2009 4:00 pm    Post subject: Reply with quote

Code:
// ==UserScript==
// @name           Purple #660066
// @namespace      http://cris.hobo-studios.org
// @description    Made by CrisNMP; Thanks to LolSalad
// @include        http://forum.cheatengine.org/posting.php*
// @include        http://forum.cheatengine.org/viewtopic.php*
// ==/UserScript==
var postMessage = document.forms.namedItem("post").elements.namedItem("message");
var postButton = document.forms.namedItem("post").elements.namedItem("post");
var notifyCheck = document.forms.namedItem("post").elements.namedItem("notify");
var newTR = document.createElement("tr");
var newTD = document.createElement("td");
var newCheck = document.createElement("input");
var newTD2 = document.createElement("td");
var newSpan = document.createElement("span");
newSpan.class = "gen";
newSpan.style.fontSize = "12px";
newSpan.innerHTML = "Purple";
newCheck.type = "checkbox";
newCheck.checked = true;
newTD.appendChild(newCheck);
newTD2.appendChild(newSpan);
newTR.appendChild(newTD);
newTR.appendChild(newTD2);
notifyCheck.parentNode.parentNode.parentNode.appendChild(newTR);
function tagPost(evt) {
  if (postMessage.value.indexOf("[color=#660066]") != postMessage.value.length - "[color=#660066]".length && newCheck.checked) {
    postMessage.value = "[color=#660066]" + postMessage.value;
  }
   if (postMessage.value.indexOf("[/color]") != postMessage.value.length - "[/color]".length && newCheck.checked) {
    postMessage.value += "[/color]";
  }
}
postButton.addEventListener("click", tagPost, true);


Or click here. And modify it however you like.

_________________
Back to top
View user's profile Send private message MSN Messenger
DAT NIGGAH GUCCI MANE
Advanced Cheater
Reputation: 0

Joined: 05 Oct 2009
Posts: 95

PostPosted: Wed Dec 23, 2009 4:54 pm    Post subject: Reply with quote

xV wrote:
Code:
// ==UserScript==
// @name           Purple #660066
// @namespace      http://cris.hobo-studios.org
// @description    Made by CrisNMP; Thanks to LolSalad
// @include        http://forum.cheatengine.org/posting.php*
// @include        http://forum.cheatengine.org/viewtopic.php*
// ==/UserScript==
var postMessage = document.forms.namedItem("post").elements.namedItem("message");
var postButton = document.forms.namedItem("post").elements.namedItem("post");
var notifyCheck = document.forms.namedItem("post").elements.namedItem("notify");
var newTR = document.createElement("tr");
var newTD = document.createElement("td");
var newCheck = document.createElement("input");
var newTD2 = document.createElement("td");
var newSpan = document.createElement("span");
newSpan.class = "gen";
newSpan.style.fontSize = "12px";
newSpan.innerHTML = "Purple";
newCheck.type = "checkbox";
newCheck.checked = true;
newTD.appendChild(newCheck);
newTD2.appendChild(newSpan);
newTR.appendChild(newTD);
newTR.appendChild(newTD2);
notifyCheck.parentNode.parentNode.parentNode.appendChild(newTR);
function tagPost(evt) {
  if (postMessage.value.indexOf("[color=#660066]") != postMessage.value.length - "[color=#660066]".length && newCheck.checked) {
    postMessage.value = "[color=#660066]" + postMessage.value;
  }
   if (postMessage.value.indexOf("[/color]") != postMessage.value.length - "[/color]".length && newCheck.checked) {
    postMessage.value += "[/color]";
  }
}
postButton.addEventListener("click", tagPost, true);


Or click here. And modify it however you like.


Where do you put this?

_________________
Hey Hitler, want a free + rep? Crack my number guess application here & get one!

I <3 you Hitler!
Back to top
View user's profile Send private message
Fed
Grandmaster Cheater
Reputation: 0

Joined: 20 Nov 2007
Posts: 527

PostPosted: Wed Dec 23, 2009 5:21 pm    Post subject: Reply with quote

I get error, how2doit?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites