hi guys, i was wondering if you could help me with something. i am trying to edit something on AZUMIKKEL itsgungame mod. on the power up i am trying to get rid of the crawler and replace it with Tomahawk. here is what the script says:
case 8: // CRAWLER | KNOCKFRONT
if(V == "CRAWLER")
{
self thread Speed(8);
self thread Weapon("creek_knife_sp");
for(;;)
{
self setStance("prone");
wait 0.05;
}
i am trying to get rid of the prone and just have him walking with the knife and a tomahawk( about 50 tomahawk )
i tried this :
case 8: // CRAWLER | KNOCKFRONT
if(V == "CRAWLER")
{
self thread Speed(8);
offhandPrimary = "hatchet_mp";
self setOffhandPrimaryClass( offhandPrimary );
self giveWeapon( offhandPrimary );
self SetWeaponAmmoClip( offhandPrimary, 10 );
self SetWeaponAmmoStock( offhandPrimary, 1 )
but it dosent work. can anyone tell me the write way to write it so the player has a knife and alot tomahawks. i am new to modding so.. yea :)
case 8: // CRAWLER | KNOCKFRONT
if(V == "CRAWLER")
{
self thread Speed(8);
self thread Weapon("creek_knife_sp");
for(;;)
{
self setStance("prone");
wait 0.05;
}
i am trying to get rid of the prone and just have him walking with the knife and a tomahawk( about 50 tomahawk )
i tried this :
case 8: // CRAWLER | KNOCKFRONT
if(V == "CRAWLER")
{
self thread Speed(8);
offhandPrimary = "hatchet_mp";
self setOffhandPrimaryClass( offhandPrimary );
self giveWeapon( offhandPrimary );
self SetWeaponAmmoClip( offhandPrimary, 10 );
self SetWeaponAmmoStock( offhandPrimary, 1 )
but it dosent work. can anyone tell me the write way to write it so the player has a knife and alot tomahawks. i am new to modding so.. yea :)