Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by uniq

  1. U

    [Release] Perfect World MS - 1.3.9 + 1.4.1

    I managed to hack the client to load v27 elements.data, the same one that server uses. I would like to do the same with gshop and tasks. For now I used sELedit configs as a reference, but I can't find similar configs for gshop and tasks. Are there any structure/config files for these two? That...
  2. U

    [DISCUSSION] PW Legacy, hardcore server concept

    Hi, I'm posting my concept of a PW server. I'd be willing to create a server like that by myself, but I'm more of a developer rather than a assembly hacker. Closed source stuff pushes me away. Feel free to use whatever you reed in here. ---The concept:
  3. U

    [Release] WinPCK for PWI Series Games

    Any chance of linux build?
  4. U

    PhP based pwAdmin

    Just compare the output of ps -fC gs and ps -fC gs | awk '{ print $9 }' Set the owner user/group of the files or folders you need to change to the one your web server is running in. Many web servers (e.g. nginx and apache) are in the group www-data by default, so: chown -R :www-data...
  5. U

    PhP based pwAdmin

    "print 9th column"
  6. U

    PhP based pwAdmin

    ps -fC gs it will output all gs processes you can get it to print only particular map names using awk ps -fC gs | awk '{ print $9 }' ps and awk are parts of posix, they will work on all decent systems
  7. U

    proc_type(s)

    I haven't seen any guide on this, so I did a bit of research. proc_type is a set of flags packed to an integer. Here's an explanation of what each flag does POS DESCRIPTION 0 doesn't drop on death 1 unable to drop 2 unable to sell 3 reserved for fashion, has no effect on other gear...
  8. U

    elements.data weap/armor unknown fields

    I've stumbled across some unknown fields again, could anyone point me what are they? armor_essence: field #40 shop_price (is it related to decomposing items? i've never got into craft on pw) field #198 force_all_magic_defences //edit 343's adminnotes say: price: NPC Buyback Price shop_price...
  9. U

    1.5.3 panel

    Just like any freelance programmer, nothing special
  10. U

    elements.data weap/armor unknown fields

    tyvm Also worth noticing: saber 1712-1731 scythe 1752-1771
  11. U

    elements.data weap/armor unknown fields

    So what's the role of that guid? It allows items to be time-limited? Should it be 1 by default, or rather 0?
  12. U

    elements.data weap/armor unknown fields

    Hello, Does anyone know what the following fields mean? "material_need" field #29 in weapons, #37 in armors <- mirages required to refine "has_guid" field #215 in weapons, #196 in armors Also, how is refine value calculated? I know that it's somehow related to the "levelup_addon" field (#28 in...
  13. U

    Item colors

    OK, I figured it out. It's field 17 for weapons and 16 for armors ("fixed_props" in ronny's v145 config) 0 - default color 3 - orange there must be some other colors as well, i haven't checked it though thanks for help ;)
  14. U

    Item colors

    Thanks for that. :) But how come that Ashura: Destroyer (id 31448) is colored even though there's no entry in item_colors.txt nor any color code in it's name (it's just "Ashura: Destroyer", all letters fit in ASCII range)
  15. U

    Item colors

    How are item colors determined? For example, you can see these two orange weapons: You must be registered for see element. (Ashura: Destroyer ) You must be registered for see element. (☆☆☆Samsara Greatsword ) I can find some items in item_color.txt in configs.pck, but not all. //edit It seems...
Back
Top