ItsMods

Full Version: kill score
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi

as we know in hardcore mod the kill score not showed (when you kill some one) so my question:

Is it possible to show kill score such as normal mod?!!

[Image: 10rlds6.png]
someone has no idea?

In _rank.gsc, find this:

Code:
    if ( !level.hardcoreMode ) //this
    { //this
        if ( type == "teamkill" )
        {
            self thread scorePopup( 0 - getScoreInfoValue( "kill" ), 0, (1,0,0), 0 );
        }
        else
        {
            color = (1,1,0.5);
            if ( gotRestXP )
                color = (1,.65,0);
            self thread scorePopup( value, momentumBonus, color, 0 );
        }
    } // this

Remove the if(!level.hardcoreMode) + the { and }. I havent tried but it should work.
thank you
and Yamato i see in some where you have a post about super nuke i see that nice one and can you share the script of that?
thank you.
(01-28-2012, 13:25)raminr63 Wrote: [ -> ]thank you
and Yamato i see in some where you have a post about super nuke i see that nice one and can you share the script of that?
thank you.

i guess he have already realeased that think about the nuke search on his section,
i can not find any realeas there is only video showe.
if you find pleas tell me
(01-28-2012, 11:58)Yamato Wrote: [ -> ]In _rank.gsc, find this:

Code:
    if ( !level.hardcoreMode ) //this
    { //this
        if ( type == "teamkill" )
        {
            self thread scorePopup( 0 - getScoreInfoValue( "kill" ), 0, (1,0,0), 0 );
        }
        else
        {
            color = (1,1,0.5);
            if ( gotRestXP )
                color = (1,.65,0);
            self thread scorePopup( value, momentumBonus, color, 0 );
        }
    } // this

Remove the if(!level.hardcoreMode) + the { and }. I havent tried but it should work.

Not work !!

other idea?