mobs
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9
Movie Critics .0.0
Latest Movies and Movie critics on criticsmob.com for your mobile phones. Latest Movies and Movie critics, celebrities and comments... more>> <<less
Download (1152KB)
Added: 2009-04-13 License: Freeware Price: Free
193 downloads
My Own Building System 2.3.2
My Own Building System (a.k.a. mobs) is a GPLd build system, lightweight and easy to use, with a limited application framework. more>>
My Own Building System (a.k.a. mobs) is a GPLd build system, lightweight and easy to use, with a limited application framework. My Own Building System project gets information from the end-user wanting to build your project and modifies the building process according to such information.
It provides the developer with some development helpers, including some makefile framework and an interface for the end-user (the 0 script). This building system supports the (more or less) automatic building of C, C++, Bison/Yacc, Flex/Lex, and Texinfo source files, and the creation of static and shared libraries and binaries.
It is not a GNU autoconf/automake clone, and although the command line of the 0 script certainly mimics the one of GNU configure it is only for the sake of end-users. Internally, and from the point of view of the developer, is very different.
<<lessIt provides the developer with some development helpers, including some makefile framework and an interface for the end-user (the 0 script). This building system supports the (more or less) automatic building of C, C++, Bison/Yacc, Flex/Lex, and Texinfo source files, and the creation of static and shared libraries and binaries.
It is not a GNU autoconf/automake clone, and although the command line of the 0 script certainly mimics the one of GNU configure it is only for the sake of end-users. Internally, and from the point of view of the developer, is very different.
Download (0.041MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
QuakeMud 1.5b
QuakeMud is a Quake themed MUD. more>>
QuakeMud project is a Quake themed MUD.
QuakeMUD is a simple and silly Quake themed MUD, good for a few minutes of fun.
Features are few. At the moment it is deathmatch only. I will code up some mobs later.
Just how much later I do not know. There is a QuakeMud server running on gnu.osoal.org.nz.
Telnet or use your favourite mud client and connect to gnu.osoal.org.nz:4950 and be the envy of all your friends!
<<lessQuakeMUD is a simple and silly Quake themed MUD, good for a few minutes of fun.
Features are few. At the moment it is deathmatch only. I will code up some mobs later.
Just how much later I do not know. There is a QuakeMud server running on gnu.osoal.org.nz.
Telnet or use your favourite mud client and connect to gnu.osoal.org.nz:4950 and be the envy of all your friends!
Download (0.036MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
1041 downloads
EQEmu 0.5.5
EQEmu is an Everquest server emulator. more>>
EQEmu project is an Everquest server emulator.
The EQEMU project is an attempt to recreate the Everquest server software, runnable from a Windows or Linux machine.
Content is stored in a MySQL database, and allows you to create custom creatures, items, and quest content in game.
Many in-game functions are supported, and functionality is expanded week by week by a very active development group and by the support of the user community.
Enhancements:
- Compatible with ZoneProxy 1.4.
- Improvements made on the combination code.
- Combined packets now work to full extent.
- Fixed mob movement.
- Added AC. Probably needs major adjusting of values to match live, but its a start.
- Group inviting is fixed.
<<lessThe EQEMU project is an attempt to recreate the Everquest server software, runnable from a Windows or Linux machine.
Content is stored in a MySQL database, and allows you to create custom creatures, items, and quest content in game.
Many in-game functions are supported, and functionality is expanded week by week by a very active development group and by the support of the user community.
Enhancements:
- Compatible with ZoneProxy 1.4.
- Improvements made on the combination code.
- Combined packets now work to full extent.
- Fixed mob movement.
- Added AC. Probably needs major adjusting of values to match live, but its a start.
- Group inviting is fixed.
Download (5.5MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1064 downloads
hashit 0.9.4
hashit is a generic hash library. more>>
hashit is a generic hash library.
hashit implements diverse collision handling methods.
This function creates a hash table which is returned as a hash_t type. errno is set to ENOMEM if there wasnt enough memory avaliable for creating the table.
Return value is a reference to the table just created or NULL when the table creation has failed.
Parameters:
- sizehint:
Its used to give an aproximated desired value for the hash table, the function calculates the real size of the table using this parameter as a hint to the final value.
- keysize:
This is the size for the data type used as a key in the hash table. Keys are void *, so hashit needs to know how long they are. If key size is 0, is assumed that keys are strings.
- hfunc:
hfunc is a pointer to the hash function for the hash table. Typically you want to put here the value NULL to use the default hash function. Avaliable hash functions are BOB_HASH(Default) and ONEAT_HASH. You can add your own hash function if you know what are you doing.
- cfunc:
cfunc is the comparation function for the keys data. Semantics are the same that in strcmp function. The function should return 0 if both keys are equal, and a value different from zero if they are not.
- flags:
flags can have the following values:
CHAIN_H:
Hash table uses chaining for handling collisions
OADDRESS_H:
Hash table uses open address hashing for handling collisions
OVERFLOW_H:
Hasht table uses an overflow area for handling collisions
If youre not sure about what collision handling your hash table should have, then use CHAIN_H.
- int hashit_insert (hash_t htable, void *key, void *data)
Enhancements:
- The build system was updated to the latest version of mobs.
- This version is prepared to use pkg-config files, so hashit has now a .pc file included.
<<lesshashit implements diverse collision handling methods.
This function creates a hash table which is returned as a hash_t type. errno is set to ENOMEM if there wasnt enough memory avaliable for creating the table.
Return value is a reference to the table just created or NULL when the table creation has failed.
Parameters:
- sizehint:
Its used to give an aproximated desired value for the hash table, the function calculates the real size of the table using this parameter as a hint to the final value.
- keysize:
This is the size for the data type used as a key in the hash table. Keys are void *, so hashit needs to know how long they are. If key size is 0, is assumed that keys are strings.
- hfunc:
hfunc is a pointer to the hash function for the hash table. Typically you want to put here the value NULL to use the default hash function. Avaliable hash functions are BOB_HASH(Default) and ONEAT_HASH. You can add your own hash function if you know what are you doing.
- cfunc:
cfunc is the comparation function for the keys data. Semantics are the same that in strcmp function. The function should return 0 if both keys are equal, and a value different from zero if they are not.
- flags:
flags can have the following values:
CHAIN_H:
Hash table uses chaining for handling collisions
OADDRESS_H:
Hash table uses open address hashing for handling collisions
OVERFLOW_H:
Hasht table uses an overflow area for handling collisions
If youre not sure about what collision handling your hash table should have, then use CHAIN_H.
- int hashit_insert (hash_t htable, void *key, void *data)
Enhancements:
- The build system was updated to the latest version of mobs.
- This version is prepared to use pkg-config files, so hashit has now a .pc file included.
Download (0.028MB)
Added: 2006-05-18 License: GPL (GNU General Public License) Price:
1258 downloads
A Small MUD 1.3
A Small MUD is a minimal MUD implementation. more>>
A Small MUD project is a minimal MUD implementation.
A Small MUD is a minimal MUD implementation, with some mildly intelligent mobs running around creating rooms.
A few pointers when reading the source code... the World class contains the "cells" in the dungeon - all those are created randomly by the mobs.
The MobFactory class contains and controls all mobs in the world - the class holds a reference to the World class.
Cells are specified by the World::CELL struct and mobs by the MobFactory::MOB struct. The SmallHandler class contains the World, MobFactory, and active sockets list (via SocketHandler).
Finally, the SmallSocket class handles all socket communication and the ListenSocket template class acts as the socket listen server.
<<lessA Small MUD is a minimal MUD implementation, with some mildly intelligent mobs running around creating rooms.
A few pointers when reading the source code... the World class contains the "cells" in the dungeon - all those are created randomly by the mobs.
The MobFactory class contains and controls all mobs in the world - the class holds a reference to the World class.
Cells are specified by the World::CELL struct and mobs by the MobFactory::MOB struct. The SmallHandler class contains the World, MobFactory, and active sockets list (via SocketHandler).
Finally, the SmallSocket class handles all socket communication and the ListenSocket template class acts as the socket listen server.
Download (0.016MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1047 downloads
ScryMUD 2.1.13
ScryMUD is a MUD with a Java client. more>>
ScryMUD project is a MUD with a Java client.
ScryMUD is a MUD written completely from scratch that has a full feature set including persistant belongings, a ree-based skill/spell system, game-navigated vehicles, complex scripting, player-owned stores and houses, and much more. The distribution also comes with Hegemon, a Java client that provides a nice UI for ScryMUDs Online Building.
Main features:
- Completely original world and code. We have 6000+ rooms, 400+ mobs and 400+ objects.
- Integrated Java Client (applet/application) which offers a nice interface to the game and to the Online Building tools.
- Player controlled shops (you get the goods, set the prices, and collect the dough.)
- Can Brew potions. This requires the brew skill, a cauldron, and the necessary ingredients.
- Can Scribe Scrolls. Requires a scroll, pen, and knowledge of the spell.
- Spells become less powerful when there are many scrolls/potions that can cast them in the game. This balances the above features.
- Skills and Spells are learned in a tree-like manner. You must learn the pre-requesites to at least 50% before you can move on to the skills/spells it enables. So, you can customize the character to your liking and are limited only by the number of practices you have.
- Game-navigated vehicles (though not widely used in the game yet.)
- Complex NPC scripting so that the builders can make quests and other interesting things.
- Mobs have some personality traits, which can influence their behavior in battle and afterwards. Some will track you down and kill you (and then return to their starting point. Others may heal you if you are badly hurt.
- Bulletin boards for in-game communication, as well as gossip, yell, and other channels.
- Banks to keep your cash safe for you.
- Configurable ANSI color.
- Some multi-lingual capability.
- Released under the GPL
Enhancements:
- This release includes the addition of weather, several new spells and socials, minor improvements to ranged combat, and assorted bugfixes.
- Daemonizing code in particular should be a bit safer now.
<<lessScryMUD is a MUD written completely from scratch that has a full feature set including persistant belongings, a ree-based skill/spell system, game-navigated vehicles, complex scripting, player-owned stores and houses, and much more. The distribution also comes with Hegemon, a Java client that provides a nice UI for ScryMUDs Online Building.
Main features:
- Completely original world and code. We have 6000+ rooms, 400+ mobs and 400+ objects.
- Integrated Java Client (applet/application) which offers a nice interface to the game and to the Online Building tools.
- Player controlled shops (you get the goods, set the prices, and collect the dough.)
- Can Brew potions. This requires the brew skill, a cauldron, and the necessary ingredients.
- Can Scribe Scrolls. Requires a scroll, pen, and knowledge of the spell.
- Spells become less powerful when there are many scrolls/potions that can cast them in the game. This balances the above features.
- Skills and Spells are learned in a tree-like manner. You must learn the pre-requesites to at least 50% before you can move on to the skills/spells it enables. So, you can customize the character to your liking and are limited only by the number of practices you have.
- Game-navigated vehicles (though not widely used in the game yet.)
- Complex NPC scripting so that the builders can make quests and other interesting things.
- Mobs have some personality traits, which can influence their behavior in battle and afterwards. Some will track you down and kill you (and then return to their starting point. Others may heal you if you are badly hurt.
- Bulletin boards for in-game communication, as well as gossip, yell, and other channels.
- Banks to keep your cash safe for you.
- Configurable ANSI color.
- Some multi-lingual capability.
- Released under the GPL
Enhancements:
- This release includes the addition of weather, several new spells and socials, minor improvements to ranged combat, and assorted bugfixes.
- Daemonizing code in particular should be a bit safer now.
Download (0.76MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
826 downloads
EPoX wmsensormon 1.2.0 EP-8RDA3I
EPoX wmsensormon is a hack based on the original wmsensormon package. more>>
EPoX wmsensormon is a hack based on the original wmsensormon package, version 1.1.3.
My modified version works out of the box on an 2.6.6 Linux kernel using the w83627hf and i2c-isa modules for hardware sensor monitoring, for an EPoX 8RDA3I motherboard.
Take it or leave it, dont call me for support.
Usage details
Compile by issuing make under the wmsensormon directory. You may need to add some -I and -L flags to the Makefile for your particular setup.
For me it works best when run like this:
wmsensormon -s1 -lf 2850 -lt 50 -ls 24
You can, of course, adjust the limits as you see fit, but only use integer values. Run wmsensormon without parameters to get help. The -lf is the lower CPU fan limit, -lt is the upper CPU and MOB temperature limit, -ls is the upper SYS temperature limit.
I dont use any of the additional features (logging, safety command, temperature switching) so they are untested. SMP support has been mangled and disabled so it most likely wont work in a multi-processor environment.
Options : -h, --help this help screen
-v, --version print version information
-f show temperatures in Fahrenheit
-s default SMP mode (mode #1)
-s1 SMP mode #1 (CPU 1, CPU 2, sys, fan)
-s2 SMP mode #2 (CPU 1, CPU 2, fan 1, fan 2)
-w switch CPU and SYS temperature readings
-r refresh time (in microseconds, default 100000)
-l enable logging with default time, (default 30000)
-ln enable logging with specified time, (1000 = 1 min)
-lt limit CPU temperature, default: system value (i.e. 60)
input values in Celsius
-ls limit SYS temperature, default: system value (i.e. 60)
input values in Celsius
-lf limit fan speed, default: system value (i.e. 3000)
-lv limit CPU core volts, default is system value
either: max voltage first, min voltage second (i.e. 180 170)
or: percent difference first, value second (i.e. % 5 175)
Example command line:
limit temp, fan, volt: wmsensormon -lt 40 -ls 30 -lf 5000 -lv 183 167 -f
using percent and SMP: wmsensormon -lt 40 -ls 30 -lf 5000 -lv % 5 175 -s -f
You must specify at least one command line argument, do to the fact that not everyone has the same CPU, voltage, or fan setup.
Enhancements:
- Hacked by xlife@zuavra.net to work on my new EPoX 8RDA3I.
- Displays CPU, MOB, SYS and FAN and reacts to lf, lt and ls limits.
<<lessMy modified version works out of the box on an 2.6.6 Linux kernel using the w83627hf and i2c-isa modules for hardware sensor monitoring, for an EPoX 8RDA3I motherboard.
Take it or leave it, dont call me for support.
Usage details
Compile by issuing make under the wmsensormon directory. You may need to add some -I and -L flags to the Makefile for your particular setup.
For me it works best when run like this:
wmsensormon -s1 -lf 2850 -lt 50 -ls 24
You can, of course, adjust the limits as you see fit, but only use integer values. Run wmsensormon without parameters to get help. The -lf is the lower CPU fan limit, -lt is the upper CPU and MOB temperature limit, -ls is the upper SYS temperature limit.
I dont use any of the additional features (logging, safety command, temperature switching) so they are untested. SMP support has been mangled and disabled so it most likely wont work in a multi-processor environment.
Options : -h, --help this help screen
-v, --version print version information
-f show temperatures in Fahrenheit
-s default SMP mode (mode #1)
-s1 SMP mode #1 (CPU 1, CPU 2, sys, fan)
-s2 SMP mode #2 (CPU 1, CPU 2, fan 1, fan 2)
-w switch CPU and SYS temperature readings
-r refresh time (in microseconds, default 100000)
-l enable logging with default time, (default 30000)
-ln enable logging with specified time, (1000 = 1 min)
-lt limit CPU temperature, default: system value (i.e. 60)
input values in Celsius
-ls limit SYS temperature, default: system value (i.e. 60)
input values in Celsius
-lf limit fan speed, default: system value (i.e. 3000)
-lv limit CPU core volts, default is system value
either: max voltage first, min voltage second (i.e. 180 170)
or: percent difference first, value second (i.e. % 5 175)
Example command line:
limit temp, fan, volt: wmsensormon -lt 40 -ls 30 -lf 5000 -lv 183 167 -f
using percent and SMP: wmsensormon -lt 40 -ls 30 -lf 5000 -lv % 5 175 -s -f
You must specify at least one command line argument, do to the fact that not everyone has the same CPU, voltage, or fan setup.
Enhancements:
- Hacked by xlife@zuavra.net to work on my new EPoX 8RDA3I.
- Displays CPU, MOB, SYS and FAN and reacts to lf, lt and ls limits.
Download (0.025MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
636 downloads
PikseLiveCD 1.03
PikseLiveCD is a LiveCD with Piksel-related software and art. more>>
PikseLiveCD is a LiveCD with Piksel-related software and art.
Usage:
- Boot from cd-rom on any PC.
- Type two-letter keyboard code when asked.
- Wait for automatic login process and desktop to appear...
- Right click for menu.
Enhancements:
- added piksel-04 ogg video in /usr/share/media
- installed modules for the webcams
- qc-usb
- spca5
- pwc
- -upgraded mob to new version ( but I dunno if it works ! Ive spent
- almost 2 days just on this ... Really cant understand what happens . If doesnt work
- properly maybe putting old one is better ?? )
- Fixed bug on pd-0.39
- upgraded pdp
- upgraded pd-patches
- upgraded pidip
- upgraded gem
- installed audioflow
- installed Mplayer1.07
- installed LIVES
- installed Fluxus
- upgraded libguile
- installed pakt
- installed pikselTango"
<<lessUsage:
- Boot from cd-rom on any PC.
- Type two-letter keyboard code when asked.
- Wait for automatic login process and desktop to appear...
- Right click for menu.
Enhancements:
- added piksel-04 ogg video in /usr/share/media
- installed modules for the webcams
- qc-usb
- spca5
- pwc
- -upgraded mob to new version ( but I dunno if it works ! Ive spent
- almost 2 days just on this ... Really cant understand what happens . If doesnt work
- properly maybe putting old one is better ?? )
- Fixed bug on pd-0.39
- upgraded pdp
- upgraded pd-patches
- upgraded pidip
- upgraded gem
- installed audioflow
- installed Mplayer1.07
- installed LIVES
- installed Fluxus
- upgraded libguile
- installed pakt
- installed pikselTango"
Download (676.8MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
890 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mobs search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed