Posts: 6,052
Threads: 429
Joined: Oct 2010
nice alistair, keep it up
Posts: 4
Threads: 0
Joined: Jan 2011
Reputation:
0
(01-16-2011, 12:54)alistair3149 Wrote: (01-16-2011, 12:51)Gucio0 Wrote: How can i add a zoom perk in this mod?
I have polish game version and i dont know how is ZOOM in englisch. Zoom perk? I know that I added all perks related to sniper inside the mod
Sorry my bad, i need "variable zoom" to sniper riffle, it's not perk it's attachments.
Posts: 863
Threads: 50
Joined: Nov 2010
Reputation:
14
(01-16-2011, 14:10)Gucio0 Wrote: (01-16-2011, 12:54)alistair3149 Wrote: (01-16-2011, 12:51)Gucio0 Wrote: How can i add a zoom perk in this mod?
I have polish game version and i dont know how is ZOOM in englisch. Zoom perk? I know that I added all perks related to sniper inside the mod
Sorry my bad, i need "variable zoom" to sniper riffle, it's not perk it's attachments. Just change the code inside SETweapon()
Posts: 4
Threads: 0
Joined: Jan 2011
Reputation:
0
(01-16-2011, 14:26)alistair3149 Wrote: (01-16-2011, 14:10)Gucio0 Wrote: (01-16-2011, 12:54)alistair3149 Wrote: (01-16-2011, 12:51)Gucio0 Wrote: How can i add a zoom perk in this mod?
I have polish game version and i dont know how is ZOOM in englisch. Zoom perk? I know that I added all perks related to sniper inside the mod
Sorry my bad, i need "variable zoom" to sniper riffle, it's not perk it's attachments. Just change the code inside SETweapon()
Ok, but don't know how i can do that
SETweapon()
{
self SetMoveSpeedScale( 1.08 );
weaponOptions = self calcWeaponOptions(RandomIntRange(1, 15), RandomIntRange(1, 5), RandomIntRange(1,40), 0, 0);
self Takeallweapons();
self giveWeapon("l96a1_mp", 0, int(weaponOptions));
self giveMaxAmmo("l96a1_mp");
self switchToWeapon("l96a1_mp");
}
I think i must change "weapon option".
I have done it. I have changed "weapon options" to "variable zoom" but it isn't working.
I'm new i mods make/change
and i don't know what i must change. I have polish version of Black ops and i don't know what is the name of "variable zoom" in game.
i'm sorry for my trivial question, but this is my first try to change a mod.
Posts: 863
Threads: 50
Joined: Nov 2010
Reputation:
14
(01-16-2011, 14:51)Gucio0 Wrote: (01-16-2011, 14:26)alistair3149 Wrote: (01-16-2011, 14:10)Gucio0 Wrote: (01-16-2011, 12:54)alistair3149 Wrote: (01-16-2011, 12:51)Gucio0 Wrote: How can i add a zoom perk in this mod?
I have polish game version and i dont know how is ZOOM in englisch. Zoom perk? I know that I added all perks related to sniper inside the mod
Sorry my bad, i need "variable zoom" to sniper riffle, it's not perk it's attachments. Just change the code inside SETweapon()
Ok, but don't know how i can do that
SETweapon()
{
self SetMoveSpeedScale( 1.08 );
weaponOptions = self calcWeaponOptions(RandomIntRange(1, 15), RandomIntRange(1, 5), RandomIntRange(1,40), 0, 0);
self Takeallweapons();
self giveWeapon("l96a1_mp", 0, int(weaponOptions));
self giveMaxAmmo("l96a1_mp");
self switchToWeapon("l96a1_mp");
}
I think i must change "weapon option".
I have done it. I have changed "weapon options" to "variable zoom" but it isn't working.
I'm new i mods make/change
and i don't know what i must change. I have polish version of Black ops and i don't know what is the name of "variable zoom" in game.
i'm sorry for my trivial question, but this is my first try to change a mod. LOL change l96a1_mp to the weapon code of variable zoom
Posts: 4
Threads: 0
Joined: Jan 2011
Reputation:
0
ok. work
|