Results 1 to 10 of 40

Thread: File handling

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Sergeant EvoloZz's Avatar
    Join Date
    Sep 2012
    Location
    Helsinki, Finland
    Posts
    360
    Thanks
    314
    Thanked 167 Times in 120 Posts
    I couldn't make a video about it because it would take ages to upload it to xfire, but i hope a screenshot is enough
    The hud elem is still exactly the same:
    Code:
    kills()
    {
    	self endon("joined_spectators");
    	self endon("disconnect");
    	
    	if(!isDefined(self.killhud))
    	{
    	       self.killhud = newClientHudElem(self);
    		self.killhud.vertAlign = "fullscreen";
    		self.killhud.horzAlign = "fullscreen";
    		self.killhud.alignX = "left";
    		self.killhud.alignY = "middle";
    		self.killhud.x = 25;
    		self.killhud.y = 474;
    		self.killhud.sort = 1; 
    		self.killhud.alpha = 1;
    		self.killhud.fontScale = 0.8;
    		self.killhud.archived = true;
    		self.killhud.label = (game["ratio"]);
    		self.killhud setValue(self.kills);
    	}
    }
    Attached Thumbnails Attached Thumbnails cod2mp-20130210-201358.png  
    Last edited by EvoloZz; 10th February 2013 at 17:29.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •