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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • I would like to know about the Acis base of the data pack I use. The server source and server file could not find that information. I respectfully ask for the help of masters.🥲
    • discord - adver745645   https://t.me/adenala2   THERE ARE A LOT OF ADEN AT A VERY GOOD PRICE!!! HURRY  
    • Artificial Intelligence for all Chronicles. Developed in L2 HighFive branch since 2023 but it can be adapted to any project including Fand-C, aCis, Frozen, Scripts even compiled projects such as Lucera with some aditional cost.   Features:  1. Grouped of templates to create your own BOT (including skill, items, appearance, sex e.t.c.) 2. Bot can participate in Olympiad (+ any event with extra cost base on your event engine) 3. Bot walk nearby NPC to receive buff, receive equipment and teleport to any other area 4. Bot will accept party & clan invitation and follow party leader to wherever he go including teleport 6. Bot will trade player back dropped items from PK or fallen Raid Bosses after they visit a peace zone 7. Bot will open store and sell configurable item in configurable prices to players. 8. Bot will attack and cast spells in a realistic way. All classes are used including buffers, summoners, bishops e.t.c. 9. Buffer and bishops will cast buff to party members when player has no available or overriden buffs. 10. Bot will enchant their equipent and re-purchase upon failure. Their weapon will also switched between hero weapon and retail weapon when they need to. 11. Bot can move in complex map system and find monsters or players but they can also follow routes for specific paths using configurable XML if you want to.   Preview of some features: Olympiad Trade Store PvP   Example of a single configurable template in XML: https://pastebin.com/RXZVGCfA   Price: 270 Euro (Compiled) - 450 Euro (Source)    Contact Me Discord: https://discord.gg/gKAsAhJNuq MaxCheaters: https://maxcheaters.com/profile/243647-out-of-time/ Gmail: l2outoftime@gmail.com RCS Message: +30 698 740 8501  
    • Good day! Due to the increasing number of questions, "Do you provide services for the client?" - I decided to answer with a separate topic. I provide services for editing/modifying the client and individual files, namely: 1. Transfer/Creation/Editing locations, geodata.   2. All kinds of work with NPCs, including transfer, animation, adding effects to them and logos.   3. Actually, Transfer/Creation/Edit any EFFECTS, including Abnormal Effects.   4. Any work with weapons, armor, accessories and everything related to it.   5. Create or edit textures, including dynamic textures.   6. Creating a Lobby Screen, Lobby Char Selection (character selection window) and Lobby Char Creation (character creation window). What I don't do: 1. Coding in any form (except for CB).   I started publishing my work recently, here - YouTube And here - RuTube If required, I respect confidentiality. Any other questions? Welcome to Telegram or PM.
  • Topics

×
×
  • Create New...