voron made me search through some old backups and i discoverd my latest version from the libcod memory viewer. last change was 2013 though :D
it's basically some php scripts + ajax / json /...
voron made me search through some old backups and i discoverd my latest version from the libcod memory viewer. last change was 2013 though :D
it's basically some php scripts + ajax / json /...
Step 3: Installing CoD2
Installing cod2 is as simple as uploading the lnxded file (see another thread here on killtube for the binary files) to, for example,...
The rounds are damn short, like 60 seconds or so. I tested on mp_railyard e.g., but both ppl gotta walk to the middle from the tdm spawns and then you maybe got 20 seconds left to fight...
You could try if adding the following code to libcod works.
functions.hpp (after SV_BeginDownload_f)
typedef int (*SV_UserinfoChanged_f)(int a1);
static SV_UserinfoChanged_f_t...
try
level.alliesteam = [];
players = getentarray("player", "classname");
for(i = 0; i < players.size; i++)
if(isdefined(players[i].pers["team"]) && players[i].pers["team"] == "allies" &&...
It is already included in the latest libcod builds.
I apparently never released it. I think that was because 64 slots is enough for cod2 and more than 64 slots wouldn't be very stable.
Edit:...
About the assist kills, wrote that script once for zombots:
on player damage:
zombie utils\assist::ASSIST_add(iDamage, eAttacker);
on player kill:
Ok, a "nicer" call_function, done with CoDScript only:
call_function(function, signature, a, b, c, d, e, f, g, h, i, j, k, l) {
args = [];
args[args.size] = a;
args[args.size] =...
BinaryBuffer example:
buf = memory_malloc(128);
bb = binarybuffer_new(buf);
binarybuffer_write(bb, "i", 100);
binarybuffer_write(bb, "f", 0.0123);
...
Hey all
Found a way to rename players without touching the "name" cvar (thus no setclientcvar needed)
Also: blocking renaming of certain players
Also: blocking renaming of certain players +...
Hey,
So with this function you can send data to another server (tested with cod2 and cod4 servers) (like rcon commands) or you can get data from it. If you want to use it you have to add my source...
Here is a nice piece of code that will add nadetracking to your killcam - see http://social.xfire.com/video/62f7a3
Edit: This code works WITHOUT libcod, on any vanilla cod2 install (although only...
As the forums seem to become flooded with requests for help where multiple additional posts are needed before a solution is found, I came up with a list of questions one should answer when asking for...
Hello all,
Lately, a lot of people have been visiting killtube with the sole purpose of asking for someone "to do a mod for them". This is quite annoying, and I'd like to write some kind of FAQ to...