Jump to content
  • 0

Flag Teleport


Innos

Question

Hello,

 

I have 2 questions I can't find any answer:

-How can I enable teleport with flag or pk? Now players cannot

-How can I set clans to level without any players requirements? Btw it's not on character.properties

 

I am using l2j gracia final

pack here http://www.maxcheaters.com/topic/70522-%CF%80%CF%89%CF%82-%CE%B8%CE%B1-%CE%B1%CE%BD%CE%BF%CE%AF%CE%BE%CE%B5%CF%84%CE%B5-%CE%AD%CE%BD%CE%B1%CE%BD-l2j-gracia-final-server%CE%BA%CE%B1%CE%B9-%CF%80%CF%89%CF%82-%CE%BA%CE%AC%CE%BD%CE%BF%CF%85%CE%BC%CE%B5-compile/

 

Thanks a lot!

Link to comment
Share on other sites

Recommended Posts

  • 0

ALT_GAME_KARMA_PLAYER_CAN_USE_GK set it to true from config folder, npc or players.prop

 

Check L2Clan.java you should find something.

If I want only players with flag not to teleport? Karma players are those who have pked

Link to comment
Share on other sites

  • 0

If I want only players with flag not to teleport? Karma players are those who have pked

bellow from

            else if (!Config.KARMA_PLAYER_CAN_USE_GK && player.getKarma() > 0) // karma

            {

                player.sendMessage("Go away, you're not welcome here.");

                return;

            }

            else if (player.getPvpFlag() >= 0) // flag

            {

                player.sendMessage("Go away, flagged players is not welcome here.");

                return;

            }

Link to comment
Share on other sites

  • 0

 

You failed hard, brah.. If you know what I mean :D

if (player.getPvpFlag() != 0)
{
     player.sendMessage("Get lost");
     return;
}

Oh.. :-X

 

if (player.getPvpFlag() != 0)

{

     player.sendMessage("Give a kiss in Gatekeeper"); :happyforever:

     return;

}

Edited by Baggoss
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...