Help With Coding!!!!

Posts 19 of 9 · Page 1 of 1
Help With Coding!!!!
Could someone help me i need to know how to implement this code:

self thread createText(1, "^4HELLO!", 2.5, "CENTER", "CENTER", 50, 50)
wait 5;
self thread renameText(1, "^5FATTYY")

into my _missions.gsc for MW2 help plzz

p.s. i know its a noob question but help plzz
Code:
doAsuperman1()
{
    Asuperman = self createFontString( "smallfixed", 2.0 );
    Asuperman setPoint( "CENTER", "CENTER", 50, 50)
    for ( ;; )
    {
    Asuperman setText(1, "^4HELLO!", 2.5,);
    wait 5.0;
    Asuperman setText(1, "^5FATTYY")
    }
}
then put self thread doAsuperman1();
into onplayerspawned()

Tell Me If It Worked
Quote Originally Posted by arnorerling View Post
Code:
doAsuperman1()
{
    Asuperman = self createFontString( "smallfixed", 2.0 );
    Asuperman setPoint( "CENTER", "CENTER", 50, 50)
    for ( ;; )
    {
    Asuperman setText(1, "^4HELLO!", 2.5,);
    wait 5.0;
    Asuperman setText(1, "^5FATTYY")
    }
}
then put self thread doAsuperman1();
into onplayerspawned()

Tell Me If It Worked
bad syntax? idk why
What is that 1 and 2,5?
Code:
doAsuperman1()
{
    Asuperman = self createFontString( "smallfixed", 2.0 );
    Asuperman setPoint( "CENTER", "CENTER", 50, 50)
    for ( ;; )
    {
    Asuperman setText("^4HELLO!");
    wait 5.0;
    Asuperman setText( "^5FATTYY");
    }
}
Now it should work


Try this
Quote Originally Posted by arnorerling View Post
What is that 1 and 2,5?
Code:
doAsuperman1()
{
    Asuperman = self createFontString( "smallfixed", 2.0 );
    Asuperman setPoint( "CENTER", "CENTER", 50, 50)
    for ( ;; )
    {
    Asuperman setText("^4HELLO!");
    wait 5.0;
    Asuperman setText( "^5FATTYY");
    }
}
Now it should work


Try this
another bad syntax
Code:
doAsuperman1()
{
    Asuperman = self createFontString( "smallfixed", 2.0 );
    Asuperman setPoint( "CENTER", "CENTER", 50, 50);
    for ( ;; )
    {
    Asuperman setText("^4HELLO!");
    wait 5;
    Asuperman setText( "^5FATTYY");
    }
}
i got it in but it dosent change
/moved to GSC help
try this..
Code:
doAsuperman1()
{
    Asuperman = self createFontString("hudbig", 0.5);
    Asuperman setPoint( "CENTER", "CENTER", 50, 50);
    for ( ;; )
    {
    Asuperman setText("^4HELLO!");
    wait 5;  
     Asuperman setText("");
    wait 0.01;
    Asuperman setText( "^5FATTYY");
    }
}
add ur code to :
Code:
onPlayerSpawned()
{
Posts 19 of 9 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?