Jump to content
  • 0

Θέλω help για ένα απλό πολύ απλό NPC Buffer


christos084

Question

Παιδιά έχει 4 μέρες που φτιάχνω ή κατεβάζω έτοιμα npc buffer και συνεχώς έχω το ίδιο error. Θέλω να φτιάξω ένα δικό buffer που να δίνει μόνο windwalk lvl2. Τίποτα παραπάνω, τα άλλα θα τα βρω μόνος μου. Θέλω μόλις πατάω πάνω στο npc να γράφει windwalk και όταν το κλικάρω να παίρνω το buff. Δεν θέλω φρουφρου και αρώματα. έχω ψάξει l2j community, ragezone και φυσικά maxcheaters και όλοι μιλάνε και τρελούς Buffers ετοιματζίδικους. 

 

...ξέχασα να πω πως το θέλω για freya client!!!

 

ευχαριστώ για το χρόνο σας!!!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

εδώ είναι ο κώδικάς μου...

import sys
from net.sf.l2j.gameserver.model.actor.instance import L2PcInstance
from java.util import Iterator
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j			       import L2DatabaseFactory
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

qn = '9998_NPCBuffer'

NPC=[7008]

QuestId     = 9998
QuestName   = 'NPCBuffer'
QuestDesc   = 'custom'
InitialHtml = '1.htm'
ADENA=57

print "#############"
print "#9998 Buffer#"
print "#############"

class Quest (JQuest) :

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

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



#Script Begins for the Buffs
if event == '1':
SkillTable.getInstance().getInfo(1204,2).getEffects(st.getPlayer(),st.getPlayer())
return '1.htm'
st.setState(COMPLETED)


if htmltext != event:
st.setState(COMPLETED)
st.exitQuest(1)
return htmltext

def onTalk (self,npc,player):
st = player.getQuestState(qn)
htmltext = 'Please, contact the administrator.'
st.setState(State.STARTED)
return InitialHtml

QUEST       = Quest(QuestId,str(QuestId) + '_' + QuestName,QuestDesc)

for npcId in NPC:
QUEST.addStartNpc(npcId)
QUEST.addTalkId(npcId)

 

και εδώ είναι το error...

Error on: C:\Users\Ultimate\Desktop\l2jserver\gameserver\data\scripts\custom\9998_NPCBuffer\__init__.py.error.log
Line: -1 - Column: -1

Traceback (innermost last):
  (no code object) at line 0
SyntaxError: ('invalid syntax', ('__init__.py', 26, 1, 'def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)'))

Link to comment
Share on other sites

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.



×
×
  • Create New...