Jump to content

Krzychu20

Inactive Member
  • Posts

    46
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Krzychu20

  1. hey, maybe stupid question but gamecore and db core communicate only via packets? Cuz i wanna store additional item_map on db core but don't know how exactly get information in game core about specific item. I wanna to do sth like this because sending multiple times sql query will be harmful and if game core crash i wont lose my data before updating in sql. Can i simply in "item using" function send request to db core and receive answer without any extra editing whole code?
  2. Hey i have a odd question, how exactly file's from pack are loaded to client? I have to know that cuz in theory I did my own pack system, but now I'm stuck cuz I'm not sure how I could implement it to client
  3. Hey, my probles is that, after starting server my specular and vnum_range are rewriting to 0, someone know where will be problem? I don't have TXT proto load, all is from sql
  4. can u type how exactly i can read information exactly on boot and is it not problem how can i update it only when i type command ingame? xD OK i load bonuses in char_item now i have to find rest xD PS is it normal that after active item, my bonuses disapear?
  5. " I recommend you to delete all of your quests and try to run your server for a while. If you're not getting this error again, then one of your loop inside your quests are corrupt and trying to run for an infite time. " Unfortunately I deleted all of my quests and problem still exist Is it possible that it's problem in mainline source?
  6. Hey, i have a problem, cuz after click a button "active" in dragon soul window, my channel core is crashed. only what I receive is that: any ideas where can I found a solution?
  7. actually i had another special database where i store my values, anyway i make it on my own way, in server game i added if statement with item value range and if value is in range, then i do select query and set attr, like for weapon etc so all working on server side, and people can't do anything with that on client side
  8. ok in theory i made it on my own way, but i have to do last step. Bons are showing but only when type of item in client is set to weapon/armor etc. How can i add it to type 18 or add specific vnum range @SOLVED i had to edit a bit uitooltip still ^^
  9. eh, it's rly a few seconds in google [Hidden Content] it's a kraizy.tgz pack, unpack it in /usr/src if i remember right, mainline_released is untouched novaline is a bit modified by people. (but im not sure)
  10. yea i know now it, i had to add more affect than i thought, exactly max hp, max stamina and vit point. Solved
  11. nobody anwsewered probably cuz of it there's full tutorial with video, so...
  12. Hey i have a problem cuz im using function AddAffect but when im trying use it with APPLY_CON or APPLY_INT only what change is a value of points, nothin more, my max hp and MP is same. Do i have to use other function too or sth?
  13. man we didnt understand each other, I earlier add this code: bool CHARACTER::CanDoAttrTransfer() const { if (m_bIsObserver) return false; if (GetShop()) return false; if (GetMyShop()) return false; if (m_bUnderRefine) return false; if (IsWarping()) return false; if (GetOfflineShop()) return false; return true; } make sure that u have it in char_item.cpp if not, add it
  14. yea u dont have part of char_item.cpp above i wrote a code, u need type it into char_item.cpp
  15. what's with char_item.cpp ? i edited post so u could didnt see it
  16. nah, im not using skype I didnt test transfer system but, make sure that u have this code #ifdef __ATTR_TRANSFER_SYSTEM__ #include "attr_transfer.h" #endif And bool CanDoAttrTransfer() const; in your char.h And this bool CHARACTER::CanDoAttrTransfer() const { if (m_bIsObserver) return false; if (GetShop()) return false; if (GetMyShop()) return false; if (m_bUnderRefine) return false; if (IsWarping()) return false; if (GetOfflineShop()) return false; return true; } in your char_item.cpp
  17. Sry for my dumb question but actually I not know what every file do so I'm not sure where can i start looking for. I tried find "desclist" but it isn't used anywhere so i guess u used it as example. Anyway can u help me a bit more and say where can i start research?
×
×
  • 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.