Jump to content

M.Sorin

Member
  • Posts

    279
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Posts posted by M.Sorin

  1. Hello guys,

    In these days i'm trying to compile the mainline source on Debian but until now i only got error message and now i'm wondering if there's a way to compile this source on Debian or these source are written only for FreeBSD.

    Greetings, CrashTest
     

    You have to change some includes and some functions to work on Debian.

  2. Sorry for x2 post , here some test and config used /etc/rc.conf.

    root@helios:~ # ping google.ro
    PING google.ro (173.194.123.79): 56 data bytes
    64 bytes from 173.194.123.79: icmp_seq=0 ttl=57 time=24.500 ms
    64 bytes from 173.194.123.79: icmp_seq=1 ttl=57 time=24.346 ms
    64 bytes from 173.194.123.79: icmp_seq=2 ttl=57 time=24.315 ms
    64 bytes from 173.194.123.79: icmp_seq=3 ttl=57 time=24.339 ms
    64 bytes from 173.194.123.79: icmp_seq=4 ttl=57 time=24.312 ms
    64 bytes from 173.194.123.79: icmp_seq=5 ttl=57 time=24.367 ms
    64 bytes from 173.194.123.79: icmp_seq=6 ttl=57 time=24.425 ms
    64 bytes from 173.194.123.79: icmp_seq=7 ttl=57 time=24.336 ms
    64 bytes from 173.194.123.79: icmp_seq=8 ttl=57 time=24.409 ms
    64 bytes from 173.194.123.79: icmp_seq=9 ttl=57 time=24.396 ms
    64 bytes from 173.194.123.79: icmp_seq=10 ttl=57 time=24.392 ms
    64 bytes from 173.194.123.79: icmp_seq=11 ttl=57 time=24.295 ms
    64 bytes from 173.194.123.79: icmp_seq=12 ttl=57 time=24.375 ms
    64 bytes from 173.194.123.79: icmp_seq=13 ttl=57 time=24.441 ms
    64 bytes from 173.194.123.79: icmp_seq=14 ttl=57 time=24.273 ms
    64 bytes from 173.194.123.79: icmp_seq=15 ttl=57 time=24.356 ms
    64 bytes from 173.194.123.79: icmp_seq=16 ttl=57 time=24.347 ms
    ^C
    --- google.ro ping statistics ---
    17 packets transmitted, 17 packets received, 0.0% packet loss
    round-trip min/avg/max/stddev = 24.273/24.366/24.500/0.055 ms
    ifconfig_re0="inet virtual.server.ip netmask 255.255.255.255 broadcast virtual.server.ip"
    static_routes="net1 net2"
    route_net1="-net dedicated.server.ip.254/32 virtual.server.ip"
    route_net2="default dedicated.server.ip.254"

    What network config is ok for the server to run normal? (OVH!)

  3. Not necesary , it`s about the kvm bridge configuration for the virtual server.

     

    Edit: i tried with vmware , xen same result , proxmox and hyper-v same result . what is the problem?

     

    I can ping , tracert from internal and external...but the server gives me the error

    SYSERR: Mar 31 09:06:43 :: socket_connect: HOST *****:59100, could not connect.
    
    SYSERR: Mar 31 09:06:58 :: socket_connect: HOST *****:59100, could not connect.
    
    
    connect: No route to host
    connect: No route to host
    connect: No route to host
    connect: No route to host
    connect: No route to host
    
  4. Video shows.. on localhost ( virtualbox works like a charm ) but when i try it on the virtual server created ... it`s not working.
     
     
    Already tried bind.

    SYSERR: Mar 31 09:06:43 :: socket_connect: HOST *****:59100, could not connect.
    SYSERR: Mar 31 09:06:58 :: socket_connect: HOST *****:59100, could not connect.

    In syserr
     

    connect: No route to host
    connect: No route to host
    connect: No route to host
    connect: No route to host
    connect: No route to host

    In ssh.
     
     
    The * is from me to cover the ip.
     

  5. Ok , in the video i will show my problem .. but let me explain first. I buyed a dedicated server from OVH and 4 x 2 failover ips. I installed solusvm configured , etc. But the metin2 server is not working properly on the virtual machine.

     

     

     

    So where is the problem? Shogun please answer if you know. Other gamecores(28k,34k) work fine , but all "40k" doesn`t.

  6. Open shop.cpp and search for this

    	if (it->second)	// if other empire, price is triple
    		dwPrice *= 3;
    

    Then replace with this:

    	if (it->second)	// if other empire, price is triple
    		dwPrice *= 1;
    

    After that search for this:

    if (bOtherEmpire) // no empire price penalty for pc shop
    pack2.items.price = item.price * 3;
    

    Replace it with:

    if (bOtherEmpire) // no empire price penalty for pc shop
    pack2.items.price = item.price * 1;
    

    Open shopEx.cpp and search for the same lines as above and replace.

    • Love 1
×
×
  • 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.