Thread: How do i do it?

Results 1 to 14 of 14

Hybrid View

  1. #1
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh

    How do i do it?

    You know in one of askummills mods or w.e his name is, it has the carepackage symbol from what you got in it, to the black skull? And for the custom killstreakes, on top middle how it has a rider on a horse with s scythe and skulls title BG and text on top? How do i do it except text is on top, and icon is Next to it..

    Example

    [Icon] TEXT [icon]

    If you know please help

  2. #2
    jimmynguyen3030's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    NukeTown
    Posts
    263
    Reputation
    10
    Thanks
    18
    My Mood
    Bored
    so what icon you want? cause i kno dem all
    the black skull is
    cardicon_skull_black

    OHHHH i get it
    you mean
    Code:
    notifyData = spawnstruct();
    notifyData.iconName = "rank_prestige10"; //Icon, 10th prestige
    notifyData.titleText = "Text"; //Line 1
    notifyData.notifyText = "Text"; //Line 2
    notifyData.notifyText2 = "Text"; //Line 3
    notifyData.glowColor = (0.3, 0.6, 0.3); //RGB Color array divided by 100
    notifyData.sound = "mp_level_up"; //Sound, level up sound here
    self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
    now for the icon you just precache it
    Last edited by jimmynguyen3030; 01-21-2011 at 09:06 PM.
    If I Helped You, Plz Thanks.
    It Would Help Alot

    What Do You Do For A Living?
    I Mostly Own Noobs With The AK-47 With Silencer
    What's That?
    (Turns To Friend)
    HAHAHA Noob!!!!!!
    [img]https://www.danasof*****m/sig/asd248737.jpg[/img]

  3. #3
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh
    noooo

    when the game starts, it remains on top of the screen.

    Like in Custom Killstreaks by Askummel, it has the skull rider! and text on top with "Custom Killstreaks"

    and when you get a carepackage when that mod is running, instead of like uav icon, it is a black skull.

    Not welcome text :c

    and i will find my own icon



    Edit: If this helps




    This is azumikkels


    But text on top of it

    and how to change like in Prop Hunt, the team that is searching/hunting has Heartbeat instead of Spetz emblem or TF141!
    I wanna know how to do that so i can customize mine
    Last edited by JamesA1994; 01-21-2011 at 09:19 PM.

  4. #4
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    /Outside link removed.
    Be careful or next time you will get banned.
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  5. #5
    jimmynguyen3030's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    NukeTown
    Posts
    263
    Reputation
    10
    Thanks
    18
    My Mood
    Bored
    ohhh thts easy
    Code:
    DoTitle
    {
    		showExistence = player createFontString( "arial", 1 );
    		showExistence setPoint( "CENTER", "TOP", 0, 46 );
    		showExistence setText( "www.youtube.com/mpkiller100" );
    		showExistence.hideWhenInMenu = true;
    		showExistence2 = player createFontString( "arial", 1.3 );
    		showExistence2 setPoint( "CENTER", "TOP", 0, 27 );
    		showExistence2 setText( "CUSTOM KILLSTREAKS" );
    		showExistence2.hideWhenInMenu = true;
    		showExistence3 = player createFontString( "arial", 1 );
    		showExistence3 setPoint( "CENTER", "TOP", -10, 15 );
    		showExistence3 setText( "AZUMIKKEL'S" );
    		showExistence3.hideWhenInMenu = true;
    		streakIcon = createIcon( "cardtitle_horsemen_war", 180, 38 );
    		streakIcon setPoint( "CENTER", "TOP", 0, 25 );
    		streakIcon.hideWhenInMenu = true;
    }
    If I Helped You, Plz Thanks.
    It Would Help Alot

    What Do You Do For A Living?
    I Mostly Own Noobs With The AK-47 With Silencer
    What's That?
    (Turns To Friend)
    HAHAHA Noob!!!!!!
    [img]https://www.danasof*****m/sig/asd248737.jpg[/img]

  6. #6
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh
    Quote Originally Posted by JamesA1994 View Post
    /Outside link removed.
    Be careful or next time you will get banned.
    i meant for it to be a example.. but ok sorry.

    Quote Originally Posted by jimmynguyen3030 View Post
    ohhh thts easy
    Code:
    DoTitle
    {
    		showExistence = player createFontString( "arial", 1 );
    		showExistence setPoint( "CENTER", "TOP", 0, 46 );
    		showExistence setText( "www.youtube.com/mpkiller100" );
    		showExistence.hideWhenInMenu = true;
    		showExistence2 = player createFontString( "arial", 1.3 );
    		showExistence2 setPoint( "CENTER", "TOP", 0, 27 );
    		showExistence2 setText( "CUSTOM KILLSTREAKS" );
    		showExistence2.hideWhenInMenu = true;
    		showExistence3 = player createFontString( "arial", 1 );
    		showExistence3 setPoint( "CENTER", "TOP", -10, 15 );
    		showExistence3 setText( "AZUMIKKEL'S" );
    		showExistence3.hideWhenInMenu = true;
    		streakIcon = createIcon( "cardtitle_horsemen_war", 180, 38 );
    		streakIcon setPoint( "CENTER", "TOP", 0, 25 );
    		streakIcon.hideWhenInMenu = true;
    }

    Yea!

    Could you test this on pc if you have it on?


    [php]DoTitle
    {
    showExistence = player createFontString( "arial", 1 );
    showExistence setPoint( "CENTER", "TOP", 0, 46 );
    showExistence setText( "xzSnipe" );
    showExistence.hideWhenInMenu = true;
    streakIcon = createIcon( "cardtitle_sniper_1", 180, 38 );
    streakIcon setPoint( "CENTER", "TOP", 0, 27 );
    streakIcon.hideWhenInMenu = true;
    }[/php]


    make it so like the cardicon is like this kind

    [Word Sniper face ]
    [Ninja Sniper face ]
    [Ninja Sniper face]

    Like so when the cardicon is shown, in the big open space, say like NiiiNjA!

  7. #7
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    Quote Originally Posted by jimmynguyen3030 View Post
    ohhh thts easy
    Code:
    DoTitle
    {
    		showExistence = player createFontString( "arial", 1 );
    		showExistence setPoint( "CENTER", "TOP", 0, 46 );
    		showExistence setText( "www.youtube.com/mpkiller100" );
    		showExistence.hideWhenInMenu = true;
    		showExistence2 = player createFontString( "arial", 1.3 );
    		showExistence2 setPoint( "CENTER", "TOP", 0, 27 );
    		showExistence2 setText( "CUSTOM KILLSTREAKS" );
    		showExistence2.hideWhenInMenu = true;
    		showExistence3 = player createFontString( "arial", 1 );
    		showExistence3 setPoint( "CENTER", "TOP", -10, 15 );
    		showExistence3 setText( "AZUMIKKEL'S" );
    		showExistence3.hideWhenInMenu = true;
    		streakIcon = createIcon( "cardtitle_horsemen_war", 180, 38 );
    		streakIcon setPoint( "CENTER", "TOP", 0, 25 );
    		streakIcon.hideWhenInMenu = true;
    }
    How I hate it when people claim that doing things are easy, even when they just copy/paste a code off someone else without apparent understanding of how it works :S
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


  8. #8
    jimmynguyen3030's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    NukeTown
    Posts
    263
    Reputation
    10
    Thanks
    18
    My Mood
    Bored
    i can test tomo right now its 11 over here so
    If I Helped You, Plz Thanks.
    It Would Help Alot

    What Do You Do For A Living?
    I Mostly Own Noobs With The AK-47 With Silencer
    What's That?
    (Turns To Friend)
    HAHAHA Noob!!!!!!
    [img]https://www.danasof*****m/sig/asd248737.jpg[/img]

  9. #9
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh
    Here is a example, picture


  10. #10
    idiot2010's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    174
    Reputation
    9
    Thanks
    6
    My Mood
    Paranoid
    u can modify it,
    but it won't show to other peoples.
    or, i have an oder way to do same thingmmm

  11. #11
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    Quote Originally Posted by idiot2010 View Post
    u can modify it,
    but it won't show to other peoples.
    or, i have an oder way to do same thingmmm
    Do you even know what he says in hes posts? Jesus christ
    He added it text over the friggin icon, he doesn't want to change any files, lol.

  12. #12
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh
    Yea. Does anyone know the exact way for the icon to be like that? NiiiNjjA in the open space. That requires the text pos to be CENTER, TOP but the icon has to be moved over about a inch/5 cms

  13. #13
    jimmynguyen3030's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    NukeTown
    Posts
    263
    Reputation
    10
    Thanks
    18
    My Mood
    Bored
    i understand it
    If I Helped You, Plz Thanks.
    It Would Help Alot

    What Do You Do For A Living?
    I Mostly Own Noobs With The AK-47 With Silencer
    What's That?
    (Turns To Friend)
    HAHAHA Noob!!!!!!
    [img]https://www.danasof*****m/sig/asd248737.jpg[/img]

  14. #14
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    Then, code your own instead of stripping off Azus without citing the source? I'mm stop trolling/flaming and stay onto topic
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]