Results 1 to 5 of 5
  1. #1
    hamed2011's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Classified
    Posts
    75
    Reputation
    10
    Thanks
    1
    My Mood
    Cool

    Question how to add marquee text to IW26??

    hi iwant to add a txt like wellcome t oserver to bottom of screen in a marquee text with black backgroud what is this code and where is code location in iw26 for add??

  2. #2
    backtrack.mani's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    like zombie mod

  3. The Following User Says Thank You to backtrack.mani For This Useful Post:

    hamed2011 (09-26-2011)

  4. #3
    hamed2011's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Classified
    Posts
    75
    Reputation
    10
    Thanks
    1
    My Mood
    Cool
    Quote Originally Posted by backtrack.mani View Post
    like zombie mod
    yeah like that i want extract that code and add it to iw26 dedicated system!!

  5. #4
    Xray Hunter's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Quote Originally Posted by hamed2011 View Post
    yeah like that i want extract that code and add it to iw26 dedicated system!!
    I don't know if your in the right section or what.
    But what you ask... Is unknow for me.

    The iwi files is where image, sounds is saved in.
    They are not for Mod Scripting.

    The message that appears at the start of the round. (What team you are.)
    Is in the game-files. (.ff files)

    So, would you tell me what you go for?
    Because after what I know...
    The iwi files got nothing with how the game is. Just what you see. (Images, models so on...) And what you hear. (Sounds and so.) And some other stuff. But I am sure you know them

  6. #5
    Nachos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Between Equator and The North Pole
    Posts
    2,984
    Reputation
    176
    Thanks
    919
    My Mood
    Blah
    Damnit guys. Use the fucking search button. I have posted this code at least 5 times...

    Somwhere:
    Code:
    doServerHUDControl()
    {
    	//259 char each
    	level.infotext2 setText("Your text top");
    	level.infotext setText("You text bottom");
    }
    
    
    doInfoScroll()
    {
    	self endon("disconnect");
    	for(i = 1600; i >= -3800; i -= 4)
    	{
    		level.infotext.x = i;
    		level.infotext2.x = i;
    		if(i == -3800){
    			i = 3800;
    		}
    		wait .005;
    	}
    }
    
    CreateServerHUD()
    {
    	level.infotext = NewHudElem();
    	level.infotext.alignX = "center";
    	level.infotext.alignY = "bottom";
    	level.infotext.horzAlign = "center";
    	level.infotext.vertAlign = "bottom";
    	level.infotext.y = 25;
    	level.infotext.foreground = true;
    	level.infotext.fontScale = 1.35;
    	level.infotext.font = "objective";
    	level.infotex*****lor = ( 1.0, 1.0, 1.0 );
    	level.infotext2 = NewHudElem();
    	level.infotext2.alignX = "center";
    	level.infotext2.alignY = "top";
    	level.infotext2.horzAlign = "center";
    	level.infotext2.vertAlign = "top";
    	level.infotext2.y = 25;
    	level.infotext2.foreground = true;
    	level.infotext2.fontScale = 1.35;
    	level.infotext2.font = "objective";
    	level.infotext2.color = ( 1.0, 1.0, 1.0 );
    	level thread doInfoScroll();
    }
    In Init()
    Code:
    	level thread CreateServerHUD();
    	level thread doServerHUDControl();


    The lines in my Steam are i's

  7. The Following User Says Thank You to Nachos For This Useful Post:

    backtrack.mani (10-03-2011)

Similar Threads

  1. Help how to add text to a mod.
    By cranow12 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 2
    Last Post: 09-25-2010, 01:56 AM
  2. How to add a password?
    By str1k3r21 in forum Visual Basic Programming
    Replies: 1
    Last Post: 10-20-2007, 04:16 PM
  3. how to add picture in vb6 trainer problem!!
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 06-09-2007, 11:47 AM
  4. [TUT] How to add Oriental/Korean Fonts
    By W$t$5TA34TYTHSETH5Y5 in forum WarRock Korea Hacks
    Replies: 2
    Last Post: 05-06-2007, 11:08 AM
  5. how to add pointers
    By ragman1234 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-15-2007, 09:51 AM