Jump to content

pbuzz

Inactive Member
  • Posts

    124
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by pbuzz

  1. change link or post logs here with spoiler from your 'ps' command result that your 'auth' core is down, or maybe is not started at all so post your "start.sh" script too
  2. install microsoft visual c++ redistributable packages (2005/2008/2010/2012), and use at least XP SP3
  3. you ask for smt like: uh guys, i have this pice of iron, how can i turn it into a rocket You can try to take functions one by one and try to figure out what is that function doing where is doing and when, that could be a start
  4. hi there, if you don't know anything about c++ it will gonna be hard to start directly with the source first of all take a look in here [Hidden Content]
  5. In source, db->ClientManagerPlayer.cpp and search for: "INSERT INTO player%s_deleted" and replace with: "INSERT INTO player_deleted%s"
  6. Fixed, the above function is wrong in source (all devs) !!! this error can appear on any server where you can cumulate more than 32k HP, skill/hit bigger than 1/3 from HP (especially on pvp servers) and AutoPotions (HP/MP) !!! manifestation: core crash, fdwatch error #closerequest
  7. in client source: userinterface/userinterface.cpp, search for: if (strstr(lpCmdLine, "--hackshield") != 0) return 0; and under that add: if (strstr(lpCmdLine, "--yourargument") == 0) return 0;
  8. guys i need some help here bsc i'm stuck from time to time my cores goes down (each and only in channels -- core1) i've debugged game.core and this is the result: AutoRecoveryItemProcess Source base is "mainline' Syserr's are empty: SYSERR: Feb 6 12:09:17.132136 :: pid_init: Start of pid: 1182 Only in DB syserr i have "FDWATCH... 21/23" and they apperar when a core goes down (when core from ch1 goes down appear fdwatch 21, and when it happens on ch 2 returns fdwatch 23)
  9. sword antiflag is wrong, change it to "262176" <- can't be used by wolfman PS: don't apply this antiflag to all items, this antiflag is only for 1 hand swords
  10. try change like this (item_proto): `window` enum('INVENTORY','EQUIPMENT','SAFEBOX','MALL','DRAGON_SOUL_INVENTORY','BELT_INVENTORY') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'INVENTORY' ,
  11. client side try smt like this: root->uiinventory.py and search for "RefreshStatus" function and change it to: def RefreshStatus(self): money = player.GetElk() if money <= 1000000: self.wndMoney.SetFontColor(122, 231, 93) elif money >= 1000001 and money <= 10000000: self.wndMoney.SetFontColor(255, 215, 76) elif money >= 10000001 and money <= 100000000: self.wndMoney.SetFontColor(128, 192, 255) self.wndMoney.SetText(localeInfo.NumberToMoneyString(money)) and you cand add more values/colors... PS: i didn't tested, but is should work
  12. thanks where i find player name color i no see in InstanceBaseEffect.cpp you can modify colors in client root->colorinfo.py
  13. try replace "data/monster/boar/run.msa"
  14. case WEAPON_SWORD: break; case COSTUME_SWORD: dwMode = MOTION_MODE_ONEHAND_SWORD; break;
  15. do port farwarding (or try with portmap) for login, ch1(+ch2+ch3+etc), ch99 ports
  16. Shisui, next time be more specific and don't just spam Deleted some lines. @Tasho:: try this: open locale_game.txt and search for "EXCHANGE_TITLE" if there is something like: "Exchange with %s (%d)" then change it to: "Exchange with %s" so the entire line will be : "EXCHANGE_TITLE Exchange with %s"
  17. your launcher doesn't have this motion: MOTION_FRENCH_KISS_WITH_WOLFMAN you can fix this by removing this line: "chr.MOTION_FRENCH_KISS_WITH_WOLFMAN : "french_kiss_with_wolfman.msa"", from "emotion.py" or by adding that motion in launcer source
  18. my above reply wasn't for your tutorial, it was like an adition/correction for Rize™'s answer
  19. with the risk of beeing Captain Obvious... your "surakof" starter might not be compatible with 64 bits win. ver. get rid of hamachi and use a no-ip service
  20. your "item_attr" table is wrong go to database "player" in navicat -> right click on table "item_attr" -> click on "Design table" -> select "apply" row and into the botton at 'Value' enter this: [Hidden Content] PS: i had to post pastebin link because on non-existing "word wraping" function =.=
  21. 1) change claw antiflag in item_proto server + client 2) 1st fix will repair this too (i'm not 100% sure)
×
×
  • 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.