ItsMods

Full Version: Tomahawk Mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Tomahawk Mod :

-Tomahawk
-Unlimited Ammo
-No killstreaks




Video:





Making on SnIIp slow motion mod Tongue so thank you

[Image: 2hprhux.gif]
nice job lol wtf? 16 views and 36 downloads?
lol ? my fans ? <3
Simple mod Tongue
You should fit you and make a big mod! For there mods that you do relatively "simple".
This is not a criticism, a council.
Agreed, i've seen some of the mods you have made. Try something BIGGER. You've proven yourself good at simple mods. Now stun us with a great one

(03-02-2011, 11:10)Romuald27 Wrote: [ -> ]Simple mod Tongue
You should fit you and make a big mod! For there mods that you do relatively "simple".
This is not a criticism, a council.

Code:
doAmmo()
{
self endon ( "disconnect" );
self endon ( "death" );

for( ;; )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
if( isSubStr( self getCurrentWeapon(), "_akimbo_" ) )
{
self setWeaponAmmoClip( currentweapon, 9999, "left" );
self setWeaponAmmoClip( currentweapon, 9999, "right" );
}
else
self setWeaponAmmoClip( currentWeapon, 9999 );

self GiveMaxAmmo( currentWeapon );
}

currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}

?
you welcome..




You should work on some bit bigger mods by the way.
This mod is the same as what corresponds to my BULLS EYE roll in RTD
Code:
            case 34:
                self.rollName = "BULLS EYE!";
                self thread Weapon("hatchet_mp");
                self thread Nades(99);
                self thread Ammo(99);
                break;
So it's like 1/100 the size of a full mod. (I'm not saying you have to make your mods as big as mine, but making something more advanced than weapon mods would be lots better)

Maybe I should start releasing over 100 mods, each containing a roll from RTD..
(03-02-2011, 12:05)AZUMIKKEL Wrote: [ -> ][code]

Maybe I should start releasing over 100 mods, each containing a roll from RTD..

Lol, that would be fun
(03-02-2011, 12:19)Unr3strict3d Wrote: [ -> ]
(03-02-2011, 12:05)AZUMIKKEL Wrote: [ -> ][code]

Maybe I should start releasing over 100 mods, each containing a roll from RTD..

Lol, that would be fun

I know right?
Might actually do it if this guy keeps on as well
btw making Ivankec's Nuketown Mod but first i need to release SnIIp Slow motion mod
K, when I'm done with my project you will see mods. And lots of them.
Pages: 1 2