Results 1 to 3 of 3
  1. #1
    noobsludgerz's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    823
    My Mood
    Amazed

    Thumbs up 4D1 skidrow version GSC : Static text.

    Hi MPGH. (again )

    I need a function that draw text on the screen without any animation and i dont know how to tell it but maybe you understand this:

    Code:
    for (;;)
    {
    
    if(self.menuOpen)
    {
    curText = textobject?;
    curText.text = "BLABLA";
    curText.alignX = center
    curText.y = 75;
    //When menu is open it just shows the text
    }else{
    delete curText;
    //when menu is closed it should remove the text.
    }
    
    wait .1;
    }
    Is this possible?

  2. #2
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    Example:
    Code:
    ModInfo()
    {
    	self endon( "disconnect" );
    	info = self createFontString("hudbig", 0.6);
    	info setPoint("TOPRIGHT", "TOPRIGHT", -2, 0);
    	info.glowColor = (1, 1, 0); 
    
    	info.glowAlpha = 1;
    	info.hideWhenInMenu = true;
    	info.alpha = 1;
    	
    	info setText("^3e^2X^3ecutorz^2!");
    	wait 10;
    	info setText("");
    }

  3. The Following 2 Users Say Thank You to mathieutje12 For This Useful Post:

    Larity2056 (07-11-2012),noobsludgerz (07-14-2012)

  4. #3
    noobsludgerz's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    823
    My Mood
    Amazed
    Quote Originally Posted by mathieutje12 View Post
    Example:
    Code:
    ModInfo()
    {
    	self endon( "disconnect" );
    	info = self createFontString("hudbig", 0.6);
    	info setPoint("TOPRIGHT", "TOPRIGHT", -2, 0);
    	info.glowColor = (1, 1, 0); 
    
    	info.glowAlpha = 1;
    	info.hideWhenInMenu = true;
    	info.alpha = 1;
    	
    	info setText("^3e^2X^3ecutorz^2!");
    	wait 10;
    	info setText("");
    }
    Thank you! BTW: i made youir 149 thanks a 150

Similar Threads

  1. [Solved] 4D1 skidrow version GSC missing case statement.
    By noobsludgerz in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 6
    Last Post: 07-08-2012, 08:21 AM
  2. zombie DLC skidrow version: I've got them all = awesome
    By lazert in forum Call of Duty Black Ops Help
    Replies: 4
    Last Post: 02-29-2012, 04:08 AM
  3. [Solved] Maps packs Skidrow Version?
    By kaumidani in forum Call of Duty Black Ops Help
    Replies: 4
    Last Post: 07-05-2011, 07:06 AM
  4. [Solved] Simple Static Text
    By litte in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 6
    Last Post: 07-04-2011, 07:36 AM
  5. [Solved] First Strike DLC (cracked/Skidrow) Version 6
    By Marios666 in forum Call of Duty Black Ops Help
    Replies: 7
    Last Post: 05-20-2011, 07:10 PM

Tags for this Thread