Jump to content

iRETEMAG

Premium
  • Posts

    263
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by iRETEMAG

  1. 3 hours ago, WeedHex said:

    Double atlasinfo for safety, good boy.

     

    (syserr?) (pack directory?) (case sensitive shits?)

     

    0209 12:44:17105 :: NOT_FOUND_GLOBAL_POSITION(565000, 565000)
    0209 12:44:17106 :: CPythonBackground::SelectViewDistanceNum(int eNum=0) mc_pcurEnvironmentData is NULL

     

     

  2. 5 minutes ago, Karbust said:

     

    You'll need the tutorial I gave you on funky emu. Use the virtual machine with a Bridged NIC and set the IP either to DHCP or a static IP on your own IP range.

     

    You'll only need the INTERNAL_IP and the PROXY_IP.

     

    You'll also need to open ports on your router and maybe a good idea to use No-IP just in case you have a Dynamic IP.

     

    Thank you for your reply :D (check the MP)

  3. 1 minute ago, Karbust said:

    You need to create an account on ZeroTier's website, then you create a new network. You can also manage what network IP address range you want, it will use DHCP to assign an IP for each node.

     

    When you install ZeroTier on FreeBSD you use the zerotier-cli to join the network (if the network is set to private you first need to add the client node id to the network in order to be able to join).

     

    You may need to do this: https://funky-emu.net/topic/23304-c-installer-un-proxy-ip-sur-votre-game/

     

    I haven't tested without it, not sure if it works or not.

     

    You'll need to use this on the CONFIG's (change with the IP assign to your VM from ZeroTier):

     

    
    PUBLIC_IP: 192.168.196.123
    INTERNAL_IP: 192.168.196.123
    PROXY_IP: 192.168.196.123

     

     

    NO ZEROTIER PLS 👃

  4. 14 minutes ago, Karbust said:

    I currently have a server only for friends using ZeroTier. It can have up to 50 nodes for free (each node is a player, and one is the server) (we are only 10, but it's only for fun with my friends).

     

    ZeroTier is a VPN service like Hamachi. The server is running on a virtual machine with VMware, only needed to have either a NAT NIC or a Bridged NIC, it only needs internet to access the ZeroTier network.

     

    What is the advantage? You don't need to share your own IP or the need to open ports on the router.

     

    Thanks for your reply and ZeroTier suggestion but I need to configure the machine like oldschool way but i'cant figure it out which settings I need to use on network adapter and bsdconfig.

     

    J9iOOVG.png

     

     

     

  5. Hi, I recently buyed a RaspberryPi

    I installed freebsd and pyhton, mysql.

    When I start my server:

    DB ACILIYOR ..
    baslat.sh: ./db: Exec format error

    GIRISLER ACILIYOR ..
    baslat.sh: ./game: Exec format error

    KANAL1 ACILIYOR ..
    baslat.sh: ./game: Exec format error

    GAME99 ACILIYOR ..
    baslat.sh: ./game: Exec format error



    Lib's problem?
    Processor ARM problem?
    What do you think it is? :/

     

  6. Hey helpers! ^_^:o

    I have this system running on my server, but he's getting the ID of the mob.
    It's possible to get the ID using Locale_Name from mob_proto table?

    TIP: Really? It's to do something with the wiki from the oficial's...

    dofile("/usr/home/game/share/locale/germany/droplist.lua")

    function drop(self)
        if dropList[self].typ == "limit" then
            if dropList[self].min_level == nil or dropList[self].max_level == nil then return end
            if dropList[self].min_level > pc.level or dropList[self].max_level < pc.level then return end
            local chance,count
            table.foreach(dropList[self].dropps, function(i)
                if dropList[self].dropps[3] ~= nil then
                    chance = dropList[self].dropps[3]
                else
                    chance = 100
                end
                if dropList[self].dropps[2] ~= nil then
                    count = dropList[self].dropps[2]
                else
                    count = 1
                end
                if math.random(1, 100) < chance then
                    game.drop_item_with_ownership(dropList[self].dropps[1], count)
                end
            end)
        elseif dropList[self].typ == "drop" then
            local chance,count
            table.foreach(dropList[self].dropps, function(i)
                if dropList[self].dropps[3] ~= nil then
                    chance = dropList[self].dropps[3]
                else
                    chance = 100
                end
                if dropList[self].dropps[2] ~= nil then
                    count = dropList[self].dropps[2]
                else
                    count = 1
                end
                if math.random(1, 100) < chance then
                    game.drop_item_with_ownership(dropList[self].dropps[1], count)
                end
            end)
        else
            return
        end
    end

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.