Jump to content

serex

Premium
  • Posts

    76
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Posts posted by serex

  1. hace 11 minutos, DevChuckNorris dijo:

    You can add the binary in the client as a project in the client source solution. Then you can set this as the start target.

    Then you can start the client from visual studio, and you should be able to see the crash.

    Could you explain to me how to do that? I dont need a full explanation only a resume and I can find out by myself.

  2. M2 Download Center

    This is the hidden content, please
    ( Internal )

    Are you tired of write [ENTER] in all your text or use 20 says for write a simple text?

    Me, yes.

    So I coded a funcion wich solve this problem.

    The difference between this function and the normal "say" is that this search for the last word of the line, and dont cut this word like the normal "say" do.

    Add to your questlib.lua

    function say2(msg)
    	msg_size = string.len(msg)
    	if msg_size > 59 then
    		local i = 59
    		last_word = nil
    		while last_word == nil and i > 0 do
    			if string.sub(msg,i,i) == " " or string.sub(msg,i,i) == "." or string.sub(msg,i,i) == "," then
    				last_word = i
    			end
    			i = i-1
    		end
    		if i == 0 then
    			last_word = 59
    		end
    		say(string.sub(msg,0,last_word))
    		say2(string.sub(msg,last_word+1))
    	else
    		say(msg)
    	end
    end

    Add to your quest_functions:

    say2

     

    And now use say2 instead of say in your quests!

    • Metin2 Dev 3
    • Love 10
  3. Hi metin2dev,

    This semester I have one subject at the university called games design and development, in this subject we use unreal engine and c++.

    The guides and task are in english/romanian and it teach you of how to be a game developer and how to use unreal engine.

    I will let for you here the material of my subject and I there are people interested I will keep updating it.

    If you have any question or you can share your work, you can post here (I will share mine).

    You can also use unity but I choose unreal, here I let you the folder with the lessons 1 and 2, and one big book, (dont start to read all, read only the tasks asked in the lessons).

    https://mega.nz/#F!PQ0mzDRa!NJ2ghoEIhUFhUHeCxUbYug

    You can also find a lot of tutorias in youtube or ask me here, but Im a noob also, Im learning for now.

     

     

    • Love 11
  4. aRgbHby.png

    0515 01:33:56038 :: Traceback (most recent call last):
    
    0515 01:33:56039 ::   File "ui.py", line 1029, in CallEvent
    
    0515 01:33:56039 ::   File "ui.py", line 87, in __call__
    
    0515 01:33:56039 ::   File "ui.py", line 69, in __call__
    
    0515 01:33:56040 ::   File "uiGuild.py", line 1670, in __OnClickSelectGuildMarkButton
    
    0515 01:33:56040 ::   File "uiUploadMark.py", line 132, in Open
    
    0515 01:33:56040 ::   File "uiUploadMark.py", line 127, in Show
    
    0515 01:33:56040 ::   File "uiUploadMark.py", line 193, in __Load
    
    0515 01:33:56041 ::   File "uiUploadMark.py", line 223, in __RefreshFileList
    
    0515 01:33:56041 ::   File "uiUploadMark.py", line 230, in __AppendFileList
    
    0515 01:33:56041 :: RuntimeError
    0515 01:33:56041 :: : 
    0515 01:33:56041 :: Failed to load image (filename: upload/99.jpg)
    0515 01:33:56041 :: 
    
    
  5. Hello, my game crash, I debug my game.core and return this:

    Core was generated by `gamefile'.
    Program terminated with signal 11, Segmentation fault.
    Error while mapping shared library sections:
    /usr/lib32/libmd.so.5: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libssl.so.6: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libstdc++.so.6: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libm.so.5: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libgcc_s.so.1: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libthr.so.3: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libc.so.7: No such file or directory.
    Error while mapping shared library sections:
    /usr/lib32/libcrypto.so.6: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libmd.so.5: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libssl.so.6: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libstdc++.so.6: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libm.so.5: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libgcc_s.so.1: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libthr.so.3: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libc.so.7: No such file or directory.
    Error while reading shared library symbols:
    /usr/lib32/libcrypto.so.6: No such file or directory.
    Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols found)...done.
    Loaded symbols for /libexec/ld-elf.so.1
    #0  0x00000000 in ?? ()
    

    Anyone can help me?

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