Jump to content

LordZiege

Seller
  • Posts

    136
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by LordZiege

  1. 1 minute ago, matyasvane said:

    Really, I asked a lot of people before I bought them, and no one actually knew her. It was complicated to find the truth. That's why I made this current post. 😞

    Maybe you asked the worng persons, idk. The most people i know would say, dont buy such files, thats why i said it.

    Next time make a thread and ask there for opinions before you buy something, think its the best way.

    • Good 1
    • Love 1
  2. Next time you should ask some people who are in this scene for a long time. Everone of them could tell you not to buy such serverfiles. (Not only.trinity, but that buggy shit files everyone try to sell with public bug systems) never do that. Learn from it and hopefully your thread helps people not to do the same mistakes.

  3. 9 hours ago, TMP4 said:

    You gave your private (local) ip address instead of a public one. Of course it can't reach it, that only works on your local network, and you using a hosting what clearly outside of your local network. Also you may have to set port forwarding for the mysql server (3306) in your router.

     

     

    But i wouldn't recommend that at all. forwarding port 3306 outside of the local network is a bad idea. (not only limited to 3306, its almost a bad idea.)

    if you want to test this homepage, you could use xampp on your local machine. @Fyco

  4. 2 hours ago, TMP4 said:

    Can you explain my why? I'm just checking the source rn to find out but can't really find anything. I know they have similar names but that's it? But again i may missing something, that's why i asked explain.

    It was told me some years ago, i dont know why, i cant find any reference in the source, but some tests showed me that its "why the heck" needed. i tried several times without 103 and 105 (t1/t2) but for me it doesnt work without them.

  5. 3 hours ago, klynaTz said:

    Your problem is related to the notepad++ encoding.

    To fix it with notepad++ you may need to delete what you added and add them again but before adding/changing anything you need to change the encoding to windows 1250 if I remember correctly. 

    Try use the default text editor for locale_string or use another text editor. I'm using visual code and sublime text and I don't need to worry about this anymore.

    Or you disable auto encode detection in notepad++.

  6. 29 minutes ago, Denizeri24 said:

    actually, he have a another problem;

    he can't open gold chest with gold key xd

     

    try debug your codes with gdb;

     

    char_item.cpp;

     

    case ITEM_TREASURE_KEY  --> if (item->GetValue(0) == item2->GetValue(0))

    Nvm, i didnt saw the video. 

     

    Woukd be nice if he post complete querys of his chests, also golden one and the keys for them. And also his full part of case ITEM_TREASURE_KEY from char_item

  7. 38 minutes ago, DragonBlack94 said:

    Chest:
    INSERT INTO `item_proto` VALUES ('50134', 0xC0CCC6C4C0C720BBF3C0DA, 0x4D6973746572696F736F204261756C65207A61666669726F, '20', '0', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '50152', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0');


    Key:

    INSERT INTO `item_proto` VALUES ('50152', 0xC0CCC6C4C0C720BBF3C0DA, 0x436869617665207A61666669726F, '21', '0', '0', '1', '0', '0', '0', '', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '50134', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0');

    Need anything else?

    You should use the same value in value0 and not the value of the chest/key wtf. Learn to read exactly.

     

    1 hour ago, Denizeri24 said:

    Check Value0 in item_proto.txt;

     

    KEY item type --> ITEM_TREASURE_KEY --> Value0 : 50

    CHEST : item type --> ITEM_TREASURE_BOX --> Value0 : 50

     

     

    Value0 must be same value with chest..

     

     

    NOTE : just check gold key ( vnum 50008 ) and gold chest ( vnum 50006 )

    He descriped it completly correctly.

  8. 20 hours ago, ilovegreendays said:

    How to configure the duration and price of the shop? Other offlineshops you can modify in config

    If I don't have any offlineshop in my files, does it do the same as the others or does it have any difference?

    char.cpp

    1A1Jx.png

    the 86400 ist the time in seconds i think.

  9. M2 Download Center

    This is the hidden content, please
    ( Internal )

    Hello,

     

    i release a working qc source. tested with vs2019 and freebsd 11.3 64 bit.

    Be sure you compile liblua on both systems before build the qc

    kind regards

     

    VT:

    This is the hidden content, please

    DL: 

    This is the hidden content, please

    • Metin2 Dev 47
    • kekw 2
    • Dislove 2
    • Angry 1
    • Think 2
    • Lmao 1
    • Good 9
    • Love 6
    • Love 41
  10. FIX:

     

    ui.py add:

     

    def MakeRadioButton(parent, x, y, tooltipText, path, up, over, down):
    	button = RadioButton()
    	button.SetParent(parent)
    	button.SetPosition(x, y)
    	button.SetUpVisual(path + up)
    	button.SetOverVisual(path + over)
    	button.SetDownVisual(path + down)
    	button.SetToolTipText(tooltipText)
    	button.Show()
    	return button

     

    class MoveChannelDialog replace this:

     

    self.channelButtonList.append(ui.MakeButton(self.blackBoard, 7, 7+30*i, "", "d:/ymir work/ui/game/myshop_deco/", "select_btn_01.sub", "select_btn_02.sub", "select_btn_03.sub"))

    with this:

     

    self.channelButtonList.append(ui.MakeRadioButton(self.blackBoard, 7, 7+30*i, "", "d:/ymir work/ui/game/myshop_deco/", "select_btn_01.sub", "select_btn_02.sub", "select_btn_03.sub"))

    Hey there,

     

    EL7Yv.gif

     

    this is my problem. the down event not working right (only in this window)

     

    i hope someone have any idea. (i didnt changed anything in the class and source)

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