Jump to content

Mitachi

Developer
  • Posts

    139
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Posts posted by Mitachi

  1. In your game folder, check in data folder, exampleusr/game/share/data. Well, do you have a folder named pc3?

    Anyway, in you client folder, open pc3 situated in ymir work
    And copy pc3 folder client in share/data server

    (Delete all .gr2 files, server no need  gr2 files) example:

    Spoiler

    6b222a441dcd61c5961aa29fbe1b8a61.gif

     

  2. You aren't using a virtual machine with gcc4.9 installed. He isn't compatible with new freebsd versions, so if you want to compile that source code, have two ways:

    1. You can use a classic Freebsd 9.2 with gcc4.9 installed (easy)

     

    2. You can update the source code but I don't recommend it if you have low skills. (hard)

     

  3. 4 hours ago, daniel1222 said:

    thank you very much, 

    im trying to connect it to my ip adress to creat a mysql connection for a server

    but everytime i put my ip on it it shows error on user root.. and the ip on the error is diferent than the one im using, how can i fix that?

    If you post the error it would be a lot, if the ip is right, try changing your mysql password

    *pasting the commands into the putty subsequently*

    /usr/local/etc/rc.d/mysql-server stop
    
    mysqld_safe --skip-grant-tables &
    
    mysql --user=root mysql
    
    update user SET password=PASSWORD('mypassword') WHERE user='root';
    
    exit;
    
    service mysql-server start

    Password is mypassword

    I'm just helping you, but just do a Google search.

     

    • Love 1
  4. I doubt you have disabled it in source, technically from the syserr you should understand that files are missing

    NB 
    The yellow damage is what you deal
    The red damage is what you take, based on how much reflect chance has your enemy

    Btw, the source code is:

    Srcs/Client/UserInterface/InstanceBaseEffect.cpp, in:

    void CInstanceBase::ProcessDamage()
    {
    	...
    }

    Example:
    spacer.png

    Instead in Python, go and search in: root/playersettingmodules.py

    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_TARGET, "", "d:/ymir work/effect/affect/damagevalue/target.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_NOT_TARGET, "", "d:/ymir work/effect/affect/damagevalue/nontarget.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_SELFDAMAGE, "", "d:/ymir work/effect/affect/damagevalue/damage.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_SELFDAMAGE2, "", "d:/ymir work/effect/affect/damagevalue/damage_1.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_POISON, "", "d:/ymir work/effect/affect/damagevalue/poison.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_MISS, "", "d:/ymir work/effect/affect/damagevalue/miss.mse")
    	chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_TARGETMISS, "", "d:/ymir work/effect/affect/damagevalue/target_miss.mse")
    	#chrmgr.RegisterCacheEffect(chrmgr.EFFECT_DAMAGE_CRITICAL, "", "d:/ymir work/effect/affect/damagevalue/critical.mse")

     

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