Jump to content

Recommended Posts

Posted

Here is my another script for my L2JFree High Rate Server. It's almost the same, than the other, but here you can obtain things by increasing your PK Points. You need to reach an additional PK Points count, and you will get buffs(you have to write it, i used Id 7201), Event Items(here is CoE, Cross of Einhasad and AA), and it set your karma for 0, if you give him 100kk Adena. It gives you karma, if you buy something. Here is the script (Only for L2JFree):

 

# PK Kills Reward System

import sys

from com.l2jfree.gameserver.model.actor.instance import L2PcInstance

from java.util import Iterator

from com.l2jfree.gameserver.datatables import SkillTable

from com.l2jfree       import L2DatabaseFactory

from com.l2jfree.gameserver.model.quest import State

from com.l2jfree.gameserver.model.quest import QuestState

from com.l2jfree.gameserver.model.quest.jython import QuestJython as JQuest

 

qn = "10001_pk"

 

#NPC (You can change the ID)

ASSASSIN = 80003

 

#QUEST ITEM

ADENA = 57

COE = 7140

AA = 5575

RABBIT = 7840

RACOON = 7841

CAT = 7842

PIG = 9884

 

QuestId    = 10001

QuestName  = "pk"

QuestDesc  = "custom"

InitialHtml = "1.htm"

 

print "importing custom: 10001: PK Quest"

 

class Quest (JQuest) :

 

def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)

 

def onEvent (self,event,st) :

  pkkills = st.getPlayer().getPkKills()

  karma = st.getPlayer().getKarma()

  htmltext = event

  if event == "1" :

    if karma <= 0 :

      if pkkills > 10 :

        st.getPlayer().setKarma(st.getPlayer().getKarma() + 10000)

        st.giveItems(COE,10)

        htmltext = "reward.htm"

      else :

        htmltext = "no.htm"

    else :

      htmltext = "karmano.htm"

  if event == "2" :

    if karma <= 0 :

      if pkkills > 20 :

        st.getPlayer().setKarma(st.getPlayer().getKarma() + 100000)

        st.giveItems(AA,1000000)

        htmltext = "reward.htm"

      else :

        htmltext = "no.htm"

    else :

      htmltext = "karmano.htm"

  if event == "3" :

    if karma <= 0 :

      if pkkills > 50 :

        st.getPlayer().setKarma(st.getPlayer().getKarma() + 1000)

        SkillTable.getInstance().getInfo(7201,1).getEffects(st.getPlayer(),st.getPlayer())

        st.getPlayer().restoreHPMP()

        htmltext = "reward.htm"

      else :

        htmltext = "no.htm"

    else :

      htmltext = "karmano.htm"

  if event == "4" :

    if karma <= 0 :

      if pkkills > 100 :

        st.getPlayer().setKarma(st.getPlayer().getKarma() + 10000)

        SkillTable.getInstance().getInfo(7201,2).getEffects(st.getPlayer(),st.getPlayer())

        st.getPlayer().restoreHPMP()

        htmltext = "reward.htm"

      else :

        htmltext = "no.htm"

    else :

      htmltext = "karmano.htm"

  if event == "5" :

    if karma <= 0 :

      if pkkills > 500 :

        st.getPlayer().setKarma(st.getPlayer().getKarma() + 100000)

        SkillTable.getInstance().getInfo(7201,3).getEffects(st.getPlayer(),st.getPlayer())

        st.getPlayer().restoreHPMP()

        htmltext = "reward.htm"

      else :

        htmltext = "no.htm"

    else :

      htmltext = "karmano.htm"

  if event == "6" :

    if karma >= 0 :

      if st.getQuestItemsCount(ADENA) >= 100000000 :

        st.getPlayer().setKarma(0)

        st.takeItems(ADENA,100000000)

      else :

        htmltext = "no1.htm"

    else :

      htmltext = "karma0.htm"

  return htmltext

 

def onTalk (self,npc,player):

  npcId = npc.getNpcId()

  if npcId == ASSASSIN :

    htmltext = "1.htm"

  return htmltext

 

QUEST      = Quest(10001,qn,"custom")

 

QUEST.addStartNpc(ASSASSIN)

QUEST.addTalkId(ASSASSIN)

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Migrating a legacy Interlude server to PostgreSQL while adding real observability is basically forcing 2006 MMO engineering to attend a 2026 infrastructure conference at gunpoint. PS: which revision of aCis? PS: 🧻what was broken during this whatever you call it.    AAC Guard beign asked to adapt to this be like: - Creating bugs since early 2018
    • OH MY LORDDDDDDDDDDDDDDDDDDDDD   FINALLY
    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
    • I came out of my cave as I do once every 5 years. By now, I know nobody really cares about L2, but I still find it fun to experiment. Everything you see here will be free and open source. I have no interest in selling anything.   Long story short, I like to revisit Interlude and apply what I've learned to see how far I can push it. Here's Outerlude, a public fork of aCis for the modern age.   Video demo:   Work that has been done:   Redone the netcode from scratch to be async The NPC AI was completely redone based on Finite State Machines Moved to PostgreSQL and using some of its cool features Lots of config that should be hot reloadable has moved to the database OpenTelemetry instrumentation, where it makes sense, and a Grafana dashboard A built-in REST API for server management A built-in MCP Server for LLMs Nidrah AI, an AI Agent to make managing the server easier Real-time server map view Chat auditing and live snooping A new Fake Players Engine with a Node logic system and a new LLM planner for any behavior Just watch the video   If there is interest in this and I'm happy with it, or I get bored (which I always do), I will open-source it. Let me know what you think and if there is some feature you'd like me to implement.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..