Jump to content
  • 0

[help] python script to v.i.p access for npc html


Question

Posted

hi all, i have a little problem with make a __init__.py to npc which will be show html when acclvl=<1

my code looks like this

import sys

from net.sf.l2j.gameserver.model.quest import State

from net.sf.l2j.gameserver.model.quest import QuestState

from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest

from net.sf.l2j import L2DatabaseFactory



QUEST_ID = 5999

QUEST_NAME   = "vip"

QUEST_DESCRIPTION   = "custom"

QUEST_LOADING_INFO = str(QUEST_ID)+"_"+QUEST_NAME

NPC_ID = 5999







def enable (vip) : # check if vip is enabled

                val = "0"

                conn=L2DatabaseFactory.getInstance().getConnection()

                act = conn.prepareStatement("SELECT accesslevel FROM characters WHERE accesslevel<=1 ")

                act.setInt(1, int(vip))

                rs=act.executeQuery()

                if rs :

                        rs.next()

                        try :

                                val = rs.getString("canUse")

                                conn.close()					

                        except :

                                val = "0"

                                try :

                                        conn.close()

                                except:

                                        pass

                        else :

                                val = "0"



                        if val == "1" :

                                val = "True"

                        if val == "0" :

                                val = "False"



                return val



class Quest (JQuest) :     

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

        def onEvent(self,event,st,player,vip):

              st = player.getQuestState(QUEST_LOADING_INFO)  

              htmltext = event

              VIP_ENABLED = getVar("vip")

              if event == "1": 

                if enable(vip) == "true" :

                        html.showhtml("5999-2.htm")

                elseif   

                html.showhtml("5999-1.htm")

def ontalk(self,event,st,player,vip):

		  st = player.getQuestState(QUEST_LOADING_INFO)  

              htmltext = event

              VIP_ENABLED = getVar("vip")

			if enable(vip) =="true" :

				html.showhtml("5999-2.htm")

			elseif

				htmltext = "<html><body>you are not vip! get lost!</body></html>"

QUEST = Quest(QUEST_ID,QUEST_LOADING_INFO,QUEST_DESCRIPTION)



QUEST.addStartNpc(NPC_ID)

QUEST.addFirstTalkId(NPC_ID)

QUEST.addTalkId(NPC_ID)

but it still dont show me html in game.

l2j rev 3599

DB rev 6691

 

5 answers to this question

Recommended Posts

  • 0
Posted

hi all, i have a little problem with make a __init__.py to npc which will be show html when acclvl=<1

my code looks like this

import sys

from net.sf.l2j.gameserver.model.quest import State

from net.sf.l2j.gameserver.model.quest import QuestState

from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest

from net.sf.l2j import L2DatabaseFactory



QUEST_ID = 5999

QUEST_NAME   = "vip"

QUEST_DESCRIPTION   = "custom"

QUEST_LOADING_INFO = str(QUEST_ID)+"_"+QUEST_NAME

NPC_ID = 5999







def enable (vip) : # check if vip is enabled

                val = "0"

                conn=L2DatabaseFactory.getInstance().getConnection()

                act = conn.prepareStatement("SELECT accesslevel FROM characters WHERE accesslevel<=1 ")

                act.setInt(1, int(vip))

                rs=act.executeQuery()

                if rs :

                        rs.next()

                        try :

                                val = rs.getString("canUse")

                                conn.close()					

                        except :

                                val = "0"

                                try :

                                        conn.close()

                                except:

                                        pass

                        else :

                                val = "0"



                        if val == "1" :

                                val = "True"

                        if val == "0" :

                                val = "False"



                return val



class Quest (JQuest) :     

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

        def onEvent(self,event,st,player,vip):

              st = player.getQuestState(QUEST_LOADING_INFO)  

              htmltext = event

              VIP_ENABLED = getVar("vip")

              if event == "1": 

                if enable(vip) == "true" :

                        html.showhtml("5999-2.htm")

                elseif   

                html.showhtml("5999-1.htm")

def ontalk(self,event,st,player,vip):

		  st = player.getQuestState(QUEST_LOADING_INFO)  

              htmltext = event

              VIP_ENABLED = getVar("vip")

			if enable(vip) =="true" :

				html.showhtml("5999-2.htm")

			elseif

				htmltext = "<html><body>you are not vip! get lost!</body></html>"

QUEST = Quest(QUEST_ID,QUEST_LOADING_INFO,QUEST_DESCRIPTION)



QUEST.addStartNpc(NPC_ID)

QUEST.addFirstTalkId(NPC_ID)

QUEST.addTalkId(NPC_ID)

but it still dont show me html in game.

l2j rev 3599

DB rev 6691

 

Why not to try to make it in Java??

 

Better Like:

Create a VIP in PC instance and in DB, check how nombless is registered,

Then you can make it Like a command, or make it in java....

Example:

if (activeChar.isVIP() && activeChar.isGM())

showHtmlMessage etc .....

Myh opinion as java is better from jython...

  • 0
Posted

1st reason :i don't make this in java 'couse i want to share this with peoples who don't change core :P and this can e added to almoste all pack's(with little chnage)

2nd reason : i try to learn jython  

3rd reason i dont know how to add class to java(never do this :P)

4th reason : if i will learn how to do this ill be able to make npc only for hero, top pvp'ers,pk'ers and other... very usefull for pvp servers

 

 

//edit

 

few minutes ago i found npc for showing pvp/pk count.. now i must just change few part of script(its for l2free)so... if i make it ill share it here :P

  • 0
Posted

                conn=L2DatabaseFactory.getInstance().getConnection()

 

                act = conn.prepareStatement("SELECT accesslevel FROM characters WHERE accesslevel<=1 ")

 

                act.setInt(1, int(vip))

 

                rs=act.executeQuery()

ofc it wont work... you are setting an int instead of getting one

  • 0
Posted

so what in your opinion i should put here? every ideas are good and can give something. on l2j forum jiv told i should use something like that

public class GmNPc extends Npc

{



public onAction(player)

{

if !player.isGm() return;

super.onAction(player);

}

}

but i dont know how and where... can someone try explain that i dont want correct code but only way.

 

import sys

from net.sf.l2j.gameserver.model.quest import State

from net.sf.l2j.gameserver.model.quest import QuestState

from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest

from net.sf.l2j import L2DatabaseFactory

print "importing custom: 50300_PKlist"



NPC_ID = 5999
QUEST_ID = 5999
QUEST_NAME   = "vip"
QUEST_DESCRIPTION   = "custom"
InitialHtml = "1.htm"



# ************************
# Creando la Clase Quest *
# ************************

class Quest (JQuest) :

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

def onTalk (self,npc,player):
	return InitialHtml

def onEvent(self,event,st):
	htmltext = event

	# *********
	# vip
	# *********

	if event == "1" and cantidad_pago >= 3000 :
		con = L2DatabaseFactory.getInstance().getConnection(None)
		pks = con.prepareStatement("SELECT accesslevel FROM characters WHERE acceslevel>0")
		rs = pks.executeQuery()
		while (rs.next()) :
			acclvl= rs.getString("accesslevel")
                               htmltext = "<html><body>blah!</body></html>"
##				pos = pos + 1
##				posstr = str(pos)
##				if color == 1:
##					color_text = "<font color =\"00FFFF\">"
##					color = 2
##					htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>"
##				elif color == 2:
##					color_text = "<font color =\"FF0000\">"
##					color = 1
##					htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>"
##			htmltext_end = "</table><center><font color=\"FFFFFF\">" + "A Total of " + str(total_asesinados) + " Pk's.</center></body></html>"
##			htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end
##			con.close()
		return htmltext_pklist
	elif event == "1" and cantidad_pago < 3000 :
		htmltext = "<html><head><title>PK info Online</title></head><body><font color =\"FF0000\">Primero pagame...!! son 3000 adenas.</body></html>"
		return htmltext






QUEST.addStartNpc(NPC_ID)

QUEST.addFirstTalkId(NPC_ID)

QUEST.addTalkId(NPC_ID)

this is 2nd code from remaked pvp/pk npc, error log :

Traceback (innermost last):
 File "__init__.py", line 71, in ?
NameError: QUEST

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

    • Inventory restock: Premium business accounts are now available.   ✔ Wallester Business EU 🇪🇺|💳 Unlimited virtual cards, physical cards, 🏦 multi-currency IBAN, ₿ crypto & stablecoin deposits. ✔ Stripe Business UK 🇬🇧|💳 Instant virtual cards (Visa/Mastercard), high-conversion checkout, multi-currency payouts, ₿ crypto payments, no-code payment links. ✔ Mercury Business US 🇺🇸|🏦 US checking & savings, 💳 unlimited virtual cards, domestic & International wires, native stablecoin settlement. ✔ Payset Business EU 🇪🇺|🏦 Multiple IBANs, UK sort code, SEPA Instant, 💳 unlimited virtual cards, multi-currency accounts. ✔ Novo Business US 🇺🇸|🏦 Business checking account, ACH payments & invoicing, 💳 virtual & physical cards, novo boost.
    • Let me see if I understand correctly, older gentlemen, when a newcomer shows up to create modern things with the help of AI, doing what you charge them to do, you point the finger and laugh. I believe that's why everything is stagnant. The product isn't for programming experts, it's for newcomers. Don't buy from you if they can do it themselves using this base. You're going to deliver a similar product, maybe even worse than this one, so why are you complaining? PowerShell, as you well know, started with it, then came new platforms and new apps, new creation models, all with different languages; I chose the simplest one for my taste. This is about being organized and knowing how to choose the right words for each situation. It's not 100%, but it already gives a good impression. Nothing is 100%, so a topic written by AI, and all the code that you charge an absurd amount for to prohibit and sell hacks, could be open source so that everyone can create new practices, new models, new information for passing packets, prohibiting the use of cheats that cause server owners to break so much. Let's remember that the Admin doesn't always shut down the server; it's the players who find problems and take advantage by buying and reselling items, and they say that the GM shuts down the server every week, but that's a lie. What they do is duplicate items with packages and sell them, but perhaps this could give some future developers a starting point to create their own protection following the model in the initial documentation. Because none of you answer a question from a newbie, you think you're superior because you have knowledge, but with AI, people like that can have the same knowledge as you, but with less practice. And if they practice a lot, 10,000 hours, they can be as good as all of you older developers in the L2J field.
  • 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..