Jump to content

Fire

Banned
  • Posts

    87
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Fire

  1. quest npcshop begin
    	state start begin
    
    		when 9001.chat."Potts" begin
    	        npc . open_shop()
    		setskin(NOWINDOW)
    		end
    
    		when 9001.chat."Upp" begin
    	    	npc.open_shop()
    		setskin(NOWINDOW)
    		end
    		
    		when 9001.chat."kommt noch" begin
    	    	npc.open_shop()
    		setskin(NOWINDOW)
    		end
    		
    		when 9003.chat."kommt noch" begin
    	    	npc.open_shop(52)
    		setskin(NOWINDOW)
    		end
    		
    	end
    end

     

    • Confused 1
    • Love 1
  2. 8 hours ago, Tasho said:

    660c1983df380ef11c352d3458c30676--bob-dy

    Can you code better then them? I'm sure you don't have 0.5% (percent) from them knowledges in programming.
    You understand how it's work a def function, for, while, if, else, elif statement and know to declare a list etc and you think you are a guru on python? and you can criticize developers who have over 10 years on programming?

    • If you was a man who have some years experience in programming you never criticize guys like them, because know how it's work that domain, you can refactor on every day your code, and all time exist "better then previous version", you think they do all efforts to make the code full organized & clean & pro & perfectly? No employee will do that, after a lot a years on domain, you don't care too much how code looks or how much optimized is it, if is working well. Especially if they are paid with a low sallary, they will not do the best.


    If i put you to explain some functions of them code you get mind fuck, because you are at a very low level.
    A lot a people talk about "shit code", and most of them (98%) doesn't know how to use a list/dict comprehension or a map, filter, lambadas, generators on python.
    Also if you think you are more good then them, then rewrite the game as you like it, or do your own MMORPG. < sarcasm level 999

    PS: I just saying my point of view, don't need to approve or disapprove it.\
    Sorry for the english level 999.

    Was a joke.

    I don’t criticize what I can’t understand because I can write it better, more syntax are very big and you can write all in "one" line. It’s just my opinion you can accept it or not and please doesn’t use this font because I lost my eyes...

    • Metin2 Dev 1
  3. Hi, i think that a lot of people know this bug because it afflict a lot of revision.
    If you are a Body Warrior and you do a skill like Aura of the sword and we try to change our skill group in Mental, we can see that we have got Mental skill group and the Aura of the sword active too.

    How fix this?

    Open questlua_pc.cpp and search:

    	int pc_set_skillgroup(lua_State* L)
        {
            if (!lua_isnumber(L, 1))
                sys_err("QUEST wrong skillgroup number");
            else
            {
                CQuestManager & q = CQuestManager::Instance();
                LPCHARACTER ch = q.GetCurrentCharacterPtr();
     
                ch->SetSkillGroup((BYTE) rint(lua_tonumber(L, 1)));
            }
            return 0;
        }

    Replace code with:

    	int pc_set_skillgroup(lua_State* L)
        {
            if (!lua_isnumber(L, 1))
                sys_err("QUEST wrong skillgroup number");
            else
            {
                CQuestManager & q = CQuestManager::Instance();
                LPCHARACTER ch = q.GetCurrentCharacterPtr();
     
                ch->RemoveGoodAffect();
                ch->SetSkillGroup((BYTE) rint(lua_tonumber(L, 1)));
            }
            return 0;
        }

     

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