This simple command/plugin removes the map threshold (4maps/120seconds). This is probably mainly useful for plugin developers. I saw someone asked for this so I release it.
Source:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using InfinityScript;
namespace NoMapThreshold
{
public class NMT : BaseScript
{
unsafe public NMT()
{
Log.Write(LogLevel.Info, "\n NoMapThreshold Plugin loaded\n Author: zxz0O0");
*(byte*)0x04E521B = 0xEB;
}
}
}
This simple command/plugin removes the map threshold (4maps/120seconds). This is probably mainly useful for plugin developers. I saw someone asked for this so I release it.
Source:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using InfinityScript; namespace NoMapThreshold { public class NMT : BaseScript { unsafe public NMT() { Log.Write(LogLevel.Info, "\n NoMapThreshold Plugin loaded\n Author: zxz0O0"); *(byte*)0x04E521B = 0xEB; } } }NTA, did you forget to patch the second check?