View previous topic :: View next topic |
Author |
Message |
Twistedfate Expert Cheater
Reputation: 1
Joined: 11 Mar 2016 Posts: 231
|
Posted: Sat Feb 04, 2017 1:34 pm Post subject: Find [My] topics only in CE forum ? |
|
|
I want to find all the topics I wrote with history is that possible via ce site?
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Sat Feb 04, 2017 3:38 pm Post subject: |
|
|
Yes. Depending on your browser, edit and run this script via an extension that will allow you to run custom scripts (e.g. Greasemonkey):
Quote: |
// ==UserScript==
// @name CE Link Fixer
// @namespace CE Link Fixer
// @include *forum.cheatengine.org/*
// @version 1
// @grant none
// ==/UserScript==
var lianks = document.evaluate(
"//a[contains(@href, 'search_id=egosearch')]",
document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < lianks.snapshotLength; i++) {
var link = lianks.snapshotItem(i);
link.href = link.href.replace("search_id=egosearch","search_author=%2B%2BMETHOS") //Change %2B%2BMETHOS to your username.
}
(function () {
var links = document.evaluate("//a[contains(@href, 'search_id')]", document, null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
var author = window.location.href.match(/search_author=(\S+)[$|\/|&]?/i)[1];
for (var i=0; i < links.snapshotLength; i++)
{
var thisLink = links.snapshotItem(i);
thisLink.href = thisLink.href.replace(/search_id=\d+/, "search_author="+author);
}
}()); |
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Feb 04, 2017 3:43 pm Post subject: |
|
|
Click on the profile button below your post, then in your profile click on 'Find all posts by Twistedfate'.
Optionally you can use Google search to force search for your name within the site.
_________________
- Retired. |
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Sat Feb 04, 2017 7:59 pm Post subject: |
|
|
The feature is disabled to reduce load on ce server?. You can use methos's script to bypass that tho
inb4 atomos Nazi rapes it
_________________
Last edited by STN on Sun Feb 05, 2017 8:57 pm; edited 1 time in total |
|
Back to top |
|
 |
Twistedfate Expert Cheater
Reputation: 1
Joined: 11 Mar 2016 Posts: 231
|
Posted: Sat Feb 04, 2017 8:39 pm Post subject: |
|
|
Thnx both works atom0s works for 1st page only and methos for all
|
|
Back to top |
|
 |
|