• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help vision
#1
with this VisionSetNaked( "mpIntro", 2 ); i set the vision for all player, how to set mpintro vision only to 1 player???
This self VisionSetNakedForPlayer( vision, transition_time ); doesnt work
  Reply
#2
VisionSetNakedForPlayer is not in Black Ops.
As a cheap alternative, use HUD overlays (for colors only)

From RTD v2:
Code:
                self.rollName = "^4Blue";
                bl = newclienthudelem( self );
                bl.x = 0;
                bl.y = 0;
                bl.horzAlign = "left";
                bl.vertAlign = "top";
                bl.sort = -1;
                bl.color = (0.02,0.18,0.52);
                bl SetShader( "white", 2000, 2000 );
                bl.alpha = 0.75;
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
  Reply
#3
nice but how do you work out the bl.color ? is it red,green,blue how would i get red ?
  Reply
#4
bl.color = (R,G,B);

R = color % / 100
so (1,0,0) would be full red, (0,1,0) would be full green, (0,0,1) would be full blue, (1,1,1) would be white, (0,0,0) would be black, (0.5,0.5,0.5) would be gray
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
  Reply
#5
all kind of rgb colour codes

http://www.farb-tabelle.de/en/table-of-color.htm
  Reply
#6
(06-01-2011, 18:39)d0h! Wrote: all kind of rgb colour codes

http://www.farb-tabelle.de/en/table-of-color.htm

Note: You have to divide those numbers by 255
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me
  Reply
#7
ah good to know, thanks
  Reply
#8
Thank you azumikkel but this isnt so good, but thank a lot Smile
  Reply
#9
but guys where do i put i want it to load when a play joins vampire team

dovampire()
self Takeallweapons();
self Giveweapon("knife_ballistic_mp", 0, self calcWeaponOptions(15,0,0,0,0));
self giveWeapon("hatchet_mp", 5, false );
self thread Jetpack();
self thread CreateInfo1();

//How/where do i put this?
{
self.rollName = "^4Blue";
bl = newclienthudelem( self );
bl.x = 0;
bl.y = 0;
bl.horzAlign = "left";
bl.vertAlign = "top";
bl.sort = -1;
bl.color = (0.02,0.18,0.52);
bl SetShader( "white", 2000, 2000 );
bl.alpha = 0.75;
}
I like turtles
[Image: thumb-275x274-design-609.png]

  Reply
#10
(06-30-2011, 14:02)birdplane Wrote: but guys where do i put i want it to load when a play joins vampire team

dovampire()
self Takeallweapons();
self Giveweapon("knife_ballistic_mp", 0, self calcWeaponOptions(15,0,0,0,0));
self giveWeapon("hatchet_mp", 5, false );
self thread Jetpack();
self thread CreateInfo1();

//How/where do i put this?
{
self.rollName = "^4Blue";
bl = newclienthudelem( self );
bl.x = 0;
bl.y = 0;
bl.horzAlign = "left";
bl.vertAlign = "top";
bl.sort = -1;
bl.color = (0.02,0.18,0.52);
bl SetShader( "white", 2000, 2000 );
bl.alpha = 0.75;
}

Code:
dovampire()
{
self thread DoHud();
}
Code:
DoHud()
{
bl = newclienthudelem( self );
bl.x = 0;
bl.y = 0;
bl.horzAlign = "left";
bl.vertAlign = "top";
bl.sort = -1;
bl.color = (0.02,0.18,0.52);
bl SetShader( "white", 2000, 2000 );
bl.alpha = 0.75;
}
if u havent figured it out
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Star [Release] Night-Vision Plugin v1.1 X-Track 7 4,939 06-01-2013, 22:26
Last Post: X-Track
  [Release] Vision Changer Ich1994 14 9,829 05-21-2013, 19:06
Last Post: [HARD] Tony.
  [Tutorial] MW3 Vision List Yamato 4 9,148 09-18-2012, 20:56
Last Post: Yamato
  [Release] Black Ops 2 Vision list *so far* d0h! 5 5,630 09-17-2012, 21:47
Last Post: Yamato
  [Release] Underwater Vision Yamato 7 4,752 01-15-2012, 20:14
Last Post: mymodzzTM
  I Had A Vision 4FunPlayin 17 7,677 08-10-2011, 19:23
Last Post: 4FunPlayin
  Infrared Vision cervantes 1 1,738 07-21-2011, 00:21
Last Post: AZUMIKKEL
  [Request] night vision No One 31 13,302 02-27-2011, 15:43
Last Post: Arteq
  Normal vision GeKKoFL0X 1 3,194 12-31-2010, 14:02
Last Post: d0h!
  How to enable a vision? alistair3149 2 2,150 12-28-2010, 09:23
Last Post: d0h!

Forum Jump:


Users browsing this thread: 1 Guest(s)