Jump to content

LordZiege

Seller
  • Posts

    136
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by LordZiege

  1. god damn open the eyes and search: IDS_APP_NAME its not that hard to press STRG + F
  2. search on Userinterface.rc for this: IDS_APP_NAME there you can change the name.
  3. Bau deine Item types im source von COSTUME_SASH auf COSTUME_ACCE um? xD und dump_proto source ebenso.
  4. Anyone have that problem too? When toggle rendertarget system, effects and water are bugging. [Hidden Content]
  5. Its easy to fix: Only some little changes in this function: def __SelectSkillGroup(self, index): (uicharacter,.py)
  6. Search in char.cpp this function: void CHARACTER::ComputePoints() inside function search: if (IsPC()) inside if clause search: SetPoint(POINT_MOV_SPEED, Change value in this bracket to 200 and you have 200 move speed as default for all characters. Kind Regards
  7. Search in itemData.cpp for BOOL CItemData::IsEquipment() const and extend the cases like this: BOOL CItemData::IsEquipment() const { switch (GetType()) { case ITEM_TYPE_WEAPON: case ITEM_TYPE_ARMOR: case ITEM_TYPE_UNIQUE: return TRUE; break; } return FALSE; } This should work. You can extend for as much as you want. just add the item type for the items you want to block.
  8. EDIT: Fixxed thanks to T4UMP (it was NOT python problem) yes i tried with 15*9 too but 16*9 same result my uisafebox is untouched, only changed size of window. only thing in uisafebox i changed is this:
  9. I made tutorial, but third page dont work very well. The slots are bugged. first and second page work normaly. Edit: here a gif [Hidden Content]
  10. When only Channel 1 online and in Channelchanger you click channel 4 you get kicked. any solution or if clause for ask if channel online or offline?
  11. Found solution: mob_color in mob_proto
  12. You missed to update the source for the new sashes. ./UserInterface/InstanceBase.cpp search for this: void CInstanceBase::SetSash(DWORD dwSash) inside this funtcion search this: dwSash > 86000 replace with this: dwSash > 87000 and replace this: dwSash -= 1000; with this: dwSash -= 2000; Should look like this: No go Serversource, game/src/item.cpp search this: else if (GetSubType() == COSTUME_SASH) inside this if clause replace this: toSetValue += 1000; with this: toSetValue += 2000; Should look like this: #Link removed
  13. Try with all bonus and look if anyone is working. for me only ATT_ELEC working, all others not.
  14. For me it shows only ATT_ELEC and the other 5 element images didnt shown. any solution? think its about the part in the char.cpp
  15. This bug in your gif i dont have thats working good. Thank you, that fixxed mit issue. No System ist working perfect.
  16. i have this problem: no syserr or something.
×
×
  • 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.