Added: a brand-new default dashboard template.
You can now add multiple game/login server builds.
Full support for running both PTS & L2J servers simultaneously, with switching between them.
Payment systems: added OmegaPay and Pally (new PayPal-style API).
Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account.
Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.
Look demo site: demo
MoMoProxy has updated more static residential proxies for USA location, anyone interested in can view: https://momoproxy.com/static-residential-proxies
Question
NightLife
This script have error..
Can you help me to fixed??
Thx. .
print "importing custom: 7500_trader" import sys 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 = "7500_trader" NPC=[7500] class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent (self,event,st) : htmltext = event # GoldBar if event == "1": if st.getQuestItemsCount(3470) >= 1: st.takeItems(3470,1) st.giveItems(57,500000000) htmltext = "Your tranfer Adena to Gold Bar Completed." else: htmltext = "Dont have enough items to complete the tranfer." # Adena if event == "2": if st.getQuestItemsCount(57) >= 500000000: st.takeItems(57,500000000) st.giveItems(3470,1) htmltext = "Your tranfer Gold Bar to Adena Completed." else: htmltext = "Dont have enough items to complete the tranfer." if event == "0": htmltext = "Trade has been canceled." if htmltext != event: st.setState(COMPLETED) st.exitQuest(1) return htmltext def onTalk (Self,npc,player): npcId = npc.getNpcId() st = player.getQuestState(qn) htmltext = "<html><body>I have nothing to say to you.</body></html>" st.set("cond","0") st.setState(STARTED) return "1.htm" QUEST = Quest(7500,qn,"custom") CREATED = State('Start', QUEST) STARTED = State('Started', QUEST) COMPLETED = State('Completed', QUEST) QUEST.setInitialState(CREATED) QUEST.addStartNpc(7500) QUEST.addTalkId(7500)What is wrong??
Thx..
1 answer to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now