Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Freeze tag melt points help please

  1. #1

    Default Freeze tag melt points help please

    Hello



    i looked in threads many times and searched long time and still looking for how to add melt points to the freeze tag please if anyone can do one please.

  2. #2

  3. #3

    Default

    1) Open ft.scr with notepad
    2) click on top of notepad on edit/find and copy paste this in there --------> award_melter_points local.melters: <-------- and clinck find next
    3) now u will see this part

    Code:
    award_melter_points local.melters:
    	if (level.mef_baseversion == "sh" || level.mef_baseversion == "bt" || level.mef_baseversion == "aa")
    	{
    		for (local.i = 0; local.i < local.melters.size; local.i++)
    		{
    			local.melter = local.melters[local.i]
    			if (local.melter != NULL)
    			{
    				if (local.melter.ft_meltscore == NIL)
    				{
    					local.melter.ft_meltscore = 0.0
    					local.melter.ft_awardedpoints = 0
    				}
    
    				local.melter.ft_meltscore += (1.0 / local.melters.size)
    				local.totalpoints = int local.melter.ft_meltscore
    
    				// round up to the nearest integer
    				if ((local.melter.ft_meltscore - local.totalpoints) > 0.0)
    				{
    					local.totalpoints += 1
    				}
    
    				local.award = local.totalpoints - local.melter.ft_awardedpoints
    				if (local.award > 0)
    				{
    
    				local.melter commanddelay 0 addKills local.award
    				local.melter.ft_awardedpoints += local.award
    				//local.melter iprint ("Your Melts: " + local.melter.ft_awardedpoints)
    				//local.melter stufftext ("locationprint 400 282 " + local.melter.ft_awardedpoints)
                                    }
    		        }
    		}
    	}
    end
    4) change that code to this code

    Code:
    award_melter_points local.melters:
        if (level.mef_baseversion == "sh" || level.mef_baseversion == "bt" || level.mef_baseversion == "aa")
        {
            for (local.i = 0; local.i < local.melters.size; local.i++)
            {
                local.melter = local.melters[local.i]
                if (local.melter != NULL)
                {
                    if (local.melter.ft_meltscore == NIL)
                    {
                        local.melter.ft_meltscore = 0.0
                        local.melter.ft_awardedpoints = 0
                    }
    
                    local.melter.ft_meltscore += (1.0 / local.melters.size)
                    local.totalpoints = int local.melter.ft_meltscore
    
                    // round up to the nearest integer
                    if ((local.melter.ft_meltscore - local.totalpoints) > 0.0)
                    {
                        local.totalpoints += 1
                    }
    
                    local.award = local.totalpoints - local.melter.ft_awardedpoints
                    if (local.award > 0)
                    {
                        if(level.mef_baseversion == "aa")
                        {
                            /// AA way with Reborn to add kills 
                            local.melter addkills local.award
                        }
                        else
                        {
                        /// SH or BT way to add kills
                        local.melter commanddelay 0 addKills local.award
                        }
                        
                        local.melter.ft_awardedpoints += local.award
                    }
                }
            }
        }
    end
    5) now it should work fine.

    greets slim

  4. #4
    Senior Member
    Join Date
    Feb 2012
    Location
    Egypt
    Posts
    174

    Default

    this one should work fine
    Attached Files Attached Files

  5. #5

    Default

    is not work,is not more ft is roundbasedmatch
    i try few time
    and skimkiller your ft is no have respawn so i dont know if work or not

  6. #6

    Default

    u need reborn patch.... thats why it doesnt work.

  7. #7

    Default

    sry i play AA Version,for aa is not posibile to make it?

  8. #8
    Senior Member
    Join Date
    Feb 2012
    Location
    Egypt
    Posts
    174

    Default

    here again and i am sure its working
    Attached Files Attached Files

  9. #9

    Default

    u need to run newest reborn patch to get it to work

  10. #10

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •