Jump to content

Kamylek

Inactive Member
  • Posts

    37
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Kamylek

  1. /usr/local/bin/ld: ../../../Extern/lib/libcryptopp.a(cryptlib.o): undefined reference to symbol '_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev'
    /usr/local/bin/ld: /usr/lib/libc++.so.1: error adding symbols: DSO missing from command line
    collect2: error: ld returned 1 exit status
    gmake: *** [Makefile:135: ../game] Error 1

     

    Cryptopp compiled with gcc49 too

    ???

  2. 45 minutes ago, VegaS said:

    Why not make like that:

    //1.) Search:

    
    		### Hair Preview Image ###
    		if self.__IsHair(itemVnum):	
    			self.__AppendHairIcon(itemVnum)
    
    		### Description ###
    		self.AppendDescription(itemDesc, 26)
    		self.AppendDescription(itemSummary, 26, self.CONDITION_COLOR)

    //2.) Add bellow:

    
    		if itemVnum in (71135, 71136):
    			table_item = {
    				71135 : ["Max HP. +1000", "Against monsters +10%"],
    				71136 : ["Max HP. +500", "Against monsters +5%"]}
    				#99999 : ["desc index 0", "desc index 1", "desc index 2", "desc index 3", "desc index 4"],
    				#[...........................]}				
    			self.AppendSpace(5)	
    			for i in xrange(len(table_item[itemVnum])):
    				self.AppendTextLine(table_item[itemVnum][i], self.SPECIAL_POSITIVE_COLOR)	

     

    Good idea! Thanks ! I'll try it.

    • Love 1
  3. I had:

     

       def __OnValueUpdate(self):
            ui.EditLine.OnIMEUpdate(self.inputValue)

            text = self.inputValue.GetText()

            money = 0
            if text and text.isdigit():
                try:
                    money = long(text)
                except ValueError:
                    money = 999999999999

            self.moneyText.SetText(self.moneyHeaderText + localeInfo.NumberToMoneyString(money))

  4. points-done

    value-done

    amounts-done

    elk-done

    gold-done

    arg-done

    GetStatus-done

    SetStatus-done

    5 minutes ago, AlexxD said:

    Points, value, amounts? You did it for ELK/GOLD/ARGUMENTS for exchange and shop, but you still need to chance GetStatus, SetStatus functions from client/userinterface, you need to change virtual void from AbstractPlayer.h from virtual int to virtual long long(or your *fcking* value)

     

  5. On 11/8/2015 at 8:56 PM, masodikbela said:
    On 11/8/2015 at 8:48 PM, Kamylek said:

    .gif

     

    With shops everything is okey...

    I still don't know what kind of window is that. Its possible, that windows in connection with belt system/dragon soul system won't work properly, because I not use any of them, so I didn't tested them.

    Every shop(not player shop) i open looks like on ss

    • Metin2 Dev 1
    • Lmao 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.