This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name ChatForFree Fix Resizing (Langerz31) | |
// @description This fixes the ChatForFree Chat Site by re-sizing the window to be within the window. | |
// Tested on FireFox 33.1.1. | |
// Chrome 39.0.2171.65 | |
// If it's broken send me an e-mail: [email protected] or | |
// message me on cff Langerz31. | |
// @namespace Langerz.ChatForFree | |
// @include http://mobile.chatforfree.org/index.php?do=/desktop-chat/ | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Facebook - No Suggested Post or Suggested App. | |
// @description No suggested Post or App Boxes should show in the Home Page. | |
// The Users have right to read content without being forced to look at ads. | |
// Tested on FireFox 34.0 | |
// Chrome 39.0.2171.65 | |
// If it's broken send me an e-mail: [email protected]. | |
// @namespace Langerz.Facebook | |
// @include https://www.facebook.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ This script can time ObjectReferences so the occur at certain hours of | |
+ the day or at a certain day. Override the ObjectActive and | |
+ ObjectInactive functions into order modify the ObjectReference when | |
+ the time period occurs. | |
+ | |
+ Hours Conversion: | |
+ 9.0 for 9:00 | |
+ 11.5 for 11:30 | |
+ 10.25 for 10:15 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ Activated Object Reference is a generic script that enables | |
+ simplification of child scripts for two-state Objects with conditions. | |
+ Override the ObjectActive and ObjectInactive functions into order | |
+ modify the ObjectReference when the conditions occur. Also override | |
+ the IsObjectActive and IsObjectInactive on your custom conditions. | |
+ | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/; | |
ScriptName ActivatedObjectReference extends ObjectReference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ This script enables an ObjectReference like a door locked and unlocked | |
+ at specified times. | |
+ | |
+ Hours Conversion: | |
+ 9.0 for 9:00 | |
+ 11.5 for 11:30 | |
+ 10.25 for 10:15 | |
+ 23.0 for 23:00 | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Radeon Pro - Visual Studio 2010 Crash Fix</title> | |
</head> | |
<body> | |
Computer Crash Fix: | |
<pre> | |
Problem signature: | |
Problem Event Name: APPCRASH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ Intermittent Object Reference is a generic script that enables | |
+ simplification of child scripts. Say you want to lock/unlock an | |
+ object every 5 minutes, this is a generic script to simplify such | |
+ a task. If you want it to only work when in view set useLooking. | |
+ Override the OnTimeElapsed Event in order to | |
+ modify the ObjectReference. | |
+ | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ This script enables an ObjectReference like a door locked and unlocked | |
+ at specified intervals. | |
+ The Properties for this examples should be set too: | |
+ useLooking = TRUE ; We only want the interval to occur when in view. | |
+ fMinutesInterval = 5.0 ; Every five minutes in game time call OnTimeElapsed. | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/; | |
ScriptName jlLockInterval extends ObjectReferenceInterval |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
+ This script can time ObjectReferences so the occur at certain hours of | |
+ the day or at a certain day. Override the ObjectActive and | |
+ ObjectInactive functions into order modify the ObjectReference when | |
+ the time period occurs. | |
+ | |
+ Version: 1.0d | |
+ Author: L4NG3RZ | |
+ Email: [email protected] | |
+ Last Modified: 20/06/2015 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name ChatForFreeMobileAndDesktop (Langerz) | |
// @description Allows the User to have both the mobile and desktop chat in the one page. | |
// You have to enter your Username/Password and select Remember Password for mobile. | |
// Tested on FireFox 33.1.1. | |
// Chrome 39.0.2171.65 | |
// If it's broken send me an e-mail: [email protected] or | |
// message me on cff Langerz31. | |
// | |
// @namespace Langerz.ChatForFree |
OlderNewer