Main > Free Download Search >

Free runescape cheats software for linux

runescape cheats

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 44
Roulette-Cheats 1.0

Roulette-Cheats 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-27 License: Freeware Price: Free
227 downloads
Roulette-Cheat 1.0

Roulette-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-28 License: Freeware Price: Free
205 downloads
Roulette Cheat Guide 1.0

Roulette Cheat Guide 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-16 License: Freeware Price: Free
195 downloads
Online-Casino-Cheat 1.0

Online-Casino-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-04 License: Freeware Price: Free
206 downloads
Online-Gambling-Cheat 1.0

Online-Gambling-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-02 License: Freeware Price: Free
207 downloads
scanmem 0.07

scanmem 0.07


scanmem is a debugging utility used to isolate the position of a variable in an executing program. more>>
scanmem is a debugging utility used to isolate the position of a variable in an executing program.
The project is similar to pokefinders used to cheat at games.
Enhancements:
- Performance improvements and reduced scan time, including miscellaneous improvements to various commands.
- A dejagnu test suite was started and the build process was autotooled.
- One serious bug where misaligned variables could potentially be missed by scanmem was fixed along with multiple minor bugs.
<<less
Download (0.004MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
872 downloads
Gambling-Cheat 1.0

Gambling-Cheat 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-06 License: Freeware Price: Free
208 downloads
Metapixel 1.0.2

Metapixel 1.0.2


Metapixel is a program for generating photomosaics. more>>
Metapixel is a Photomosaic Generator. It can generate classical photomosaics, in which the source image is viewed as a matrix of equally sized rectangles for each of which a matching image is substitued, as well as collage-style photomosaics, in which rectangular parts of the source image at arbitrary positions (i.e. not aligned to a matrix) are substituted by matching images.
Main features:
- Metapixel generates not only classical mosaics but also collage-style photomosaics (see examples).
- The matching algorithms match not only color but also form.
- Metapixel is fast. It takes about 75 seconds to generate a classical photomosaic for a 2048x2432 image with constituent images of size 64x64 and a database of slightly more than 11000 images on my not-so-fast Alpha. Most of this time is spent loading and saving images.
- Metapixel can generate classical mosaics which contain at most one copy of each constituent image. Alternatively, Metapixel can be instructed to honor a minimum distance between two occurrences of the same image in classical photomosaics.
- Metapixel has a cheat option which overlays the photomosaic with the original image using a user-specified percentage. Small percentages yield noticable improvements but are innocent enough so as not to be noticed without close inspection.
- Metapixel is a command-line program and thus scriptable.
Enhancements:
- This version adds a few minor bugfixes and support for reading GIF and writing JPEG files.
<<less
Download (0.065MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1058 downloads
Unicode::Overload 0.01

Unicode::Overload 0.01


Unicode::Overload is a Perl source filter to implement Unicode operations. more>>
Unicode::Overload is a Perl source filter to implement Unicode operations.

SYNOPSIS

use charnames :full;
use Unicode::Overload (
"N{UNION}" => infix =>
sub { my %a = map{$_=>1}@{$_[0]};
my %b = map{$_=>1}@{$_[1]};
return keys(%a,$b); },
"N{SUPERSCRIPT TWO}" => postfix => sub { $_[0] ** 2 },
"N{NOT SIGN}" => prefix => sub { !$_[0] },
[ "N{LEFT FLOOR}", "N{RIGHT FLOOR}" ] => outfix =>
sub { POSIX::floor($_[0]) },
);

@union = (@a N{UNION @b); # Parentheses REQUIRED
die "Pythagoras was WRONG!" # Same here
unless sqrt((3)N{SUPERSCRIPT TWO} + (4)N{SUPERSCRIPT TWO}) == 5;
$b = N{NOT SIGN}($b); # Required here too
die "Fell through floor" # Balanced characters form their own parentheses
unless N{LEFT FLOOR}-3.2N{RIGHT FLOOR} == 4;

Allows you to declare your own Unicode operators and have them behave as prefix (like sigma or integral), postfix (like superscripted 2), infix (like union), or outfix (like the floor operator, with the L-like and J-like brackets).

To keep this document friendly to people without UTF-8 terminals, the N{} syntax for Unicode characters will be used throughout, but please note that the N{} characters can be replaced with the actual UTF-8 characters anywhere.
Also, please note that since Perl 5 doesnt support the notion of arbitrary operators, this module cheats and uses source filters to do its job. As such, all "operators" must have their arguments enclosed in parentheses. This limitation will be lifted when a better way to do this is found.

Also, note that since these arent "real" operators there is no way (at the moment) to specify precedence. All Unicode "operators" have the precedence (such as it is) of function calls, as they all get transformed into function calls inline before interpreting.

In addition, due to a weird unicode-related bug, only one character per operator is currently permitted. Despite behaving correctly elsewhere, substr() thinks that one character equals one byte inside Unicode::Overload .

Anyway, this module defines four basic types of operators. Prefix and infix should be familiar to most users of perl, as prefix operators are basically function calls without the parens. Infix operators are of course the familiar + etcetera.

The best analogy for postfix operators is probably the algebraic notation for squares. $a**2 is perls notation, ($a)N{SUPERSCRIPT TWO} is the Unicode::Overload equivalent, looking much closer to a mathematical expression, with the 2 in its proper position.

Outfix is the last operator, and a little odd. Outfix can best be thought of as user-definable brackets. One of the more common uses for this notation again comes from mathematics in the guise of the floor operator. Looking like brackets with the top bar missing, they return effectively POSIX::floor() of their contents.

Since outfix operators define their own brackets, extra parentheses are not needed on this type of operator.

A quick summary follows:

prefix

Operator goes directly before the parentheses containing its operands. Whitespace is allowed between the operator and opening parenthesis. This acts like a function call.

Sample: N{NOT SIGN}($b)

postfix

Operator goes directly after the parentheses containing its operands. Whitespace is allowed between the closing parenthesis and operator. This doesnt have a good Perl equivalent, but there are many equivalents in algebra, probably the most common being:

Sample: ($a+$b)N{SUPERSCRIPT TWO}

infix

Operator goes somewhere inside the parentheses. Whitespace is allowed between either parenthesis and the operator.

Sample: ($a N{ELEMENT OF} @list)

outfix

Operators surround their arguments and are translated into parentheses. As such, whitespace is allowed anywhere inside the operator pairs. There is no requirement that the operators be visually symmetrical, although it helps.

Sampe: $c=N{LEFT FLOOR}$a_+$bN{RIGHT FLOOR}

The requirements for parentheses will be removed as soon as I can figure out how to make these operators behave closer to perl builtins. Nesting is perfectly legal, but multiple infix operators cant coexists within one set of parentheses.

<<less
Download (0.005MB)
Added: 2007-07-12 License: Perl Artistic License Price:
834 downloads
GroupSTAT 0.12.1

GroupSTAT 0.12.1


GroupSTAT generates statistics from a local Usenet news spool. more>>
GroupSTAT generates statistics from a local Usenet news spool.
Recently, I seem to have become the unofficial stats maintainer for rec.arts.drwho. The program that I have been using to generate these stats, StatNews, was inadequate for the job. I thought about making a few alterations to it and sending a patch to the maintainer (Davide Salvetti), but after looking over the source code to StatNews, I decided that it would be easier to start over and do a complete re-write, using StatNewss source as a cheat-sheet for certain aspects of the project.

So, I set about writing this new program. I did a little research, and found the News::Scan Perl module (available on CPAN or from the authors website. The News::Scan module allowed me to write a program to get the stats without having to actually look at any news articles. This made my job a lot easier.

I have tried to make GroupSTAT as portable as possible. This program has been (for the most part) designed and tested under Debian GNU/Linux woody, and may not work on other platforms. This should be considered a bug; if you have problems getting it to work on your flavor of Unix, please tell me.

<<less
Download (0.022MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1219 downloads
Snes9X 1.5

Snes9X 1.5


Snes9X is a Super Nintendo Entertainment System emulator. more>>
Snes9X is a Super Nintendo Entertainment System emulator.
Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) emulator.
It basically allows you to play most games designed for the SNES and Super Famicom Nintendo game systems on your PC or Workstation; which includes some real gems that were only ever released in Japan.
Main features:
- ability to save in any location of the game, despite how the game was designed its amazingly useful when you dont want to redo the same level over and over.
- built-in peripherals. This is anything from multi-taps, to super scopes, to cheat devices.
- ability to rip sprites and music for your own personal use
- easier to organize and no stacks of cartridges that scare off non-nerdish women.
- filters can be used to enhance graphics on old games.
Snes9x is the result of well over three years worth of part-time hacking, coding, recoding, debugging, divorce, etc. (just kidding about the divorce bit). Snes9x is coded in C++, with three assembler CPU emulation cores on the i386 Linux and Windows ports.
Currently there are many ports of Snes9x available, please check the download page to see if a port exists for your system.
Enhancements:
- Pseudo-hires rendering flush, Old 2xsai endian fix
- Added oops auto-snapshot support
- Anomies control remapping patch
- Support for IPS patches in the zip file
- Config file for Unix/X11 and Unix/SVGA
- Rewrote the renderer. Enjoy!
- Add support for saner directory structures under Unix
- Added 4-point gaussian interpolation and proper envelopes.
- Speed adjustment of C++ Super FX emulation.
- Removed some game specific hacks.
- dded partial Satellaview (BS) emulation.
- dded the Katakana font for onscreen messages.
- Updated JMA to v1
- Fixed JMA options in config
- Removed --with(out)-asmcpu option in config because the i386 assembler CPU core is out of date.
- Changed the default settings in config.
- Ported Snes9x to AMD64.
- Completed DSP-1 code.
- Updated DSP-3 and DSP-4 code.
- Fixed a lot of bugs.
<<less
Download (0.51MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1286 downloads
TagCloud Maker Class 1.0

TagCloud Maker Class 1.0


TagCloud Maker Class is a class that takes a single dimensional array of terms and outputs a piece of HTML with each term. more>>
TagCloud Maker Class is a class that takes a single dimensional array of terms and outputs a piece of HTML with each term wrapped in a span tag with an ID that you can define in your CSS.

TagCloud Maker Class script can be called either as an object or as a static class.

Check out the example page. The keywords from the sample page come from the last 30 entries of my blog. Ill admit I cheated and just open the database and pull them from there instead of trying to call my blog w/curl or fopen and parse it. (Although that would have been cooler.) I then ran each blog entry against Yahoos Term Extraction API to get the terms. Then I pumped that array into my new TagCloud maker. The important code you cant see from the index.php is below.


require_once(TagCloud.php);
$x = TagCloud::fetch_cloud($thisArray,...,tagcloud_,http://www.technorati.com/tags/%s);
$o = new TagCloud($thisArray,...,tagcloud_,http://www.technorati.com/tags/%s,10,weight,2);
$o->get_cloud();
$y = $o->output_cloud;

As you can see, I used 2 different methods of creating the 2 lists. The first is just calling the object::method statically with all the necessary parameters. This is by far the easiest way to use this class and unless you need something special, its the way I recommend. The second way it to instantiate an object. I pass all the variables into the constructor but you could just as easily use the setters to set them all. (dont know why you would but hey, I spent an extra 15 minutes creating getters and setters so use them, by all means use them!)
<<less
Download (0.012MB)
Added: 2006-01-25 License: GPL (GNU General Public License) Price:
1380 downloads
Destiney Scripts Topsites 1.4.0

Destiney Scripts Topsites 1.4.0


Destiney Scripts Topsites project provides a pre-built, dynamically generated, traffic gathering topsite. more>>
Destiney Scripts Topsites project provides a pre-built, dynamically generated, traffic gathering topsite.

Destiney Scripts Topsites is a script for creating a dynamically-generated, traffic gathering "topsite", a competition traffic site on which members compete for placement on the list based on the traffic referrals they send.

It features http-referrer- and cookie-based anti-cheat devices, an admin interface, gateway-less entry, and random site selection.

<<less
Download (0.051MB)
Added: 2007-02-06 License: BSD License Price:
991 downloads
GSnes9x 3.12

GSnes9x 3.12


GSnes9x project is a GNOME front end for the Snes9X SNES emulator more>>
GSnes9x project is a GNOME front end for the Snes9X SNES emulator
GSnes9x is a GNOME front-end for the Snes9X SNES emulator.
It allows setting and preservation of options for each ROM, and keeps a Cheat Codes database, an unlimited amount of codes can be stored.
Enhancements:
- Version 3.12 release
- remove help hackery, use Gnome help system
- include Snes9x Readme v1.37
- patch to use GSNES9X_IMAGE_DIR environment variable from morpheus2371
- Gnomified image loading
<<less
Download (0.46MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1082 downloads
Tom the Tomato 2.0.1

Tom the Tomato 2.0.1


Tom the Tomato is a clone of Rainbow inslands. more>>
Tom the Tomato is a clone of Rainbow inslands.
Tom must jump higher and higher to survive. Graphic is simple - hand draw.
Enhancements:
- Higher RESOLUTION (320x240 Pixel instead of 256x192!)
- More COLORS (Full 8-bit mode, 262144 color palette instead of 256 colors!)
- More NOISE (New 8-bit square-wave generator! [replaced with a sample in 2.01])
- True programmers` art GRAPHICS (...!)
- True programmers` art MUSIC (turn off speakers!)
- Bounding box COLLISION (with big bounding boxes!)
- 4-way SCROLLING (and simulated 8-way scrolling!)
- 10 LEVELS (hard to beat!)
- unique TILES in every level (with transparent background!)
- 4 unique ENEMIES (animated!)
- 1 PARTICLE effect (rain drops!)
- 1 SPECIAL EFFECT (tainted sprites in water!)
- 1 SOUND effect (might interfere with music though [not anymore in 2.01]!)
- RECORD/PLAYBACK possibilities (9 demo recordings included!)
- Unlimited RESTARTS (instead of load/save cheating!)
- CHEAT CODE (skip levels by pressing IDLEV times during ready screen!)
- Full C++ SOURCE CODE provided (somewhat obfuscated, and protected by GPL!)
- Uses the ALLEGRO library (therefore running on lots of platforms!)
- Uses DUMB for music playback (as of version 2.01!)
<<less
Download (0.12MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
859 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3