Skip to content

Instantly share code, notes, and snippets.

// ==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: jdoe090910@gmail.com 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
// ==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: jdoe090910@gmail.com.
// @namespace Langerz.Facebook
// @include https://www.facebook.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
@Langerz82
Langerz82 / TimedObjRef.psc
Created December 5, 2014 05:00
This script can time ObjectReferences so the occur at certain hours of the day or at a certain day.
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 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
@Langerz82
Langerz82 / ActivatedObjectReference.psc
Created December 8, 2014 02:59
Activated Object Reference is a generic script that enables simplification of child scripts for two-state Objects with conditions.
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 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
@Langerz82
Langerz82 / jlTimedLock3.psc
Created December 8, 2014 03:24
Time Lock Example using Activated Object Reference.
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 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
+
<html>
<head>
<title>Radeon Pro - Visual Studio 2010 Crash Fix</title>
</head>
<body>
Computer Crash Fix:
<pre>
Problem signature:
Problem Event Name: APPCRASH
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 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 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
@Langerz82
Langerz82 / TimedObjRef2.psc
Last active August 29, 2015 14:12
Timed Object Reference - Version 1.0d - Beta
;/++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 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: jdoe090910@gmail.com
+ Last Modified: 20/06/2015
@Langerz82
Langerz82 / ChatForFreeMobileAndDesktop.user.js
Last active February 9, 2019 04:58
Allows the User to have both the mobile and desktop chat in the one page.
// ==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: jdoe090910@gmail.com or
// message me on cff Langerz31.
//
// @namespace Langerz.ChatForFree