Metin2 Enter 1 Player Per IP on the Map You Want

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Blaze

Elite
Elite
VIP
Joined
Jan 28, 2019
Messages
507
Credits
635
The purpose of the system is to present the entry of a second account with the same thread on the map you have determined.
Example Ox contest etc. etc.

Quest example:


Code:
Expand Collapse Copy
when login with pc.is_pc_ip_in_map() begin
     chat("You can enter this map with only 1 character per IP. You will be teleported to the village in 5 seconds.")
     warp_to_village()
end


To add/remove maps just edit: map_manager.h:
Code:
Expand Collapse Copy
        std::map<DWORD, std::map<DWORD, DWORD>> maps = {
            { 181, {} },
            { 182, {} },
            { 183, {} }
        };


 
Back
Top