Jump to content

Shisui

Former Staff
  • Posts

    977
  • Joined

  • Last visited

  • Days Won

    15
  • Feedback

    0%

Posts posted by Shisui

  1. 36 minutes ago, galet said:

    Sorry, I was just using the most used picture about this caption on the internet since the existance of this meme (link related), without any volition of making fun of anyone which is disabled or not. I'm not making fun of anyone, this is not my kind.

    Moreover, if I put an "image macro", this is because a lot of people did it before me... (inluding staff members, V.I.P, developers and so on)

    However, I could change the picture with this one (if you want and if you grant me the permission to do so): https://metin2.download/picture/E474acvF7A0s8r6rjCfIOdRmAdA2I032/.png

    I would like to apologize if I offended anybody, but I repeat, the idea of offending anyone was not even in my mind when I posted this picture...

    Sorry for offtopic and again, good job ken

    Don't feel sorry. It's just me, personaly and not offended, asking not to.

    If you want to post these kind of images, sure you've the freedom.

    • Love 1
  2. Try this quest if you want

    quest anOS_kill_system begin
        state start begin
            when kill begin
                if game.get_event_flag("anOS_STAT") == 1 and not npc.is_pc() then
                    if math.random(1,50) == 1 then    
                        game.drop_item_with_ownership(299)    
                    end
                end
            end
            when 20094.chat." GM : drop system CP " with pc.is_gm() begin
                local STATUS = game.get_event_flag("anOS_STAT")
                say('Welcome to the drop system CP[ENTER]dropsystem is '..({'activated','deactivated'})[STATUS+1])
                if select(({'Activate','Deactivate'})[STATUS+1],'Close') == 2 then return end
                if STATUS == 0 then
                    syschat'Drop system has been activated'
                    game.set_event_flag("anOS_STAT",1)
                elseif STATUS == 1 then
                    syschat'Drop system has been deactivated'
                    game.set_event_flag("anOS_STAT",0)
                end
            end
        end
    end

     

    
     
  3. exchange.cpp

    Search for

    			if (item->GetVnum() >= 80003 && item->GetVnum() <= 80007)
    			{
    				LogManager::instance().GoldBarLog(victim->GetPlayerID(), item->GetID(), EXCHANGE_TAKE, "");
    				LogManager::instance().GoldBarLog(GetOwner()->GetPlayerID(), item->GetID(), EXCHANGE_GIVE, "");
    			}

     

    And after that

    			m_pOwner->CreateFly(FLY_SP_MEDIUM, victim);
    			for (int i = 0; i < 3; i++){
    				m_pOwner->CreateFly(FLY_SP_SMALL, victim);
    			}

     

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