Jump to content

Stefoulis15

Legendary Member
  • Posts

    2,588
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Stefoulis15

  1. k4rma I -beep-ing start loving ya! OMG I Love This.. It Reminds Me Ice Crusader.. But , It's BETTER! Anyway. Why Don't You Do Something Else? Create One Full Set Of Brand New Armors. I Mean Create One Robe , One Light And One Heavy . Create Their Stats And Sh1t And Share Them.. Im Sure That They Will PWN! Thx a lot k4rma <3 xD
  2. That Is REALLY AWESOME. IT ROXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Thx k4rmaa :)
  3. Well , You 've Seen In Many L2OFF Servers , That When You Press The Buff's Button It Just Gives You The Buff. Not Makes You Cast It. You See I Want This To Make It On L2J. I've Seen It On L2Emu Project ServerPacks. But i Don't Wanna Work with L2Emu... So. Im Asking For Someone To Tell Me. How Can I Set The Buffer When You Press For Example Dance of Siren To Gives You The Buff. Not Makes You Casting It. Thanks In Advance.
  4. lolz0r :'( Thanks Mate :)
  5. Well.. If You Can Make Me One Too!?!?!?!?! xD Im A Little Bit... NOOBz0r On Photoshop...! If You Can , Make Me One... Thx In Advance.
  6. Well , It's Good But It Has a Problem. When You Try To Augment , You Can't! :) Cause The Augment Window Is Totally BLACK! IF You Can Stantons Tell To Your Friend To Repair It , And R-Upload It. Thanks.
  7. Main Class = Spellhowler 1st Sub = WarCryer 2nd Sub = Bishop 3rd Sub = Elemental Summoner.. Do These , And You Will Remember Me.....
  8. A W E S O M E JUST A W E S O M E OMG They Are Perfect My Friend! I Really Fcking Like Them. They Are Really COOL Thanks For Sharing Mate
  9. Erm Do You Know What This Means?? The "Code" You Gave Has Nothing To Do With That.... This Code Is That If The Player Hasnt 150k Adena Or His Is Lower Than 10 Level The Buffer Can't Buff Him... --------------------------------------------------------------------------------------------------------- Try This One As An HP Recovery #Greater Heal if event == "70": st.takeItems(ADENA_ID,0) st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1217,1),False,False) st.getPlayer().restoreHPMP() return "1.htm" st.setState(COMPLETED)
  10. Re Cs ELEOS Pia.. Exei Ginei 100++ Fores To Idio Problem Post... Tespa.. Teleytaia Fora. Dn Ksanalew Tpt.. pigene sto GameServer/Data/Jscript/custom anoikse to _init_.py delete oti exei mesa k kane paste afta __all__ = [ '708_ZakenCurse', '3995_echo', '4000_ShadowWeapons', '6050_KetraOrcSupport', '6051_VarkaSilenosSupport', '7000_HeroItems', '8000_RaidbossInfo', '9999_NPCBuffer' ] print "" print "importing custom data ..." for name in __all__ : try : __import__('data.jscript.custom.'+name,globals(), locals(), ['__init__'], -1) except: print "failed to import quest : ",name print "... done" print ""
  11. Oriste : 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 = "9999_NPCBuffer" NPC=[40006] ADENA_ID=57 QuestId = 9999 QuestName = "NPCBuffer" QuestDesc = "custom" InitialHtml = "1.htm" print "importing custom: 9999: NPCBuffer" class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent(self,event,st): htmltext = event count= if count < 0 or st.getPlayer().getLevel() < 1 : htmltext = "<html><head><body>No Tienes Adena.<br></body></html>" else: st.takeItems(ADENA_ID) st.getPlayer().setTarget(st.getPlayer()) if event == "1": st.takeItems(ADENA_ID) st.getPlayer().restoreMP() return "1.htm" st.setState(COMPLETED) #Wind Walk if event == "2": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4342,2).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Decrease Weight if event == "3": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4343,3).getEffects(st.getPlayer(),st.getPlayer()) return "2.htm" st.setState(COMPLETED) #Shield if event == "4": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4344,3).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Might if event == "5": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4345,3).getEffects(st.getPlayer(),st.getPlayer()) return "2.htm" st.setState(COMPLETED) #Mental Shield if event == "6": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4346,4).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Bless the Body if event == "7": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4347,6).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Bless the Soul if event == "8": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4348,6).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Magic Barrier if event == "9": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4349,2).getEffects(st.getPlayer(),st.getPlayer()) return "4.htm" st.setState(COMPLETED) #Resist Shock if event == "10": st.takeItems(ADENA_ID) SkillTable.getInstance().getInfo(4350,4).getEffects(st.getPlayer(),st.getPlayer()) return "2.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 = "<html><head><body>I have nothing to say to you</body></html>" st.setState(STARTED) return InitialHtml QUEST = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc) CREATED=State('Start',QUEST) STARTED=State('Started',QUEST) COMPLETED=State('Completed',QUEST) QUEST.setInitialState(CREATED) for npcId in NPC: QUEST.addStartNpc(npcId) QUEST.addTalkId(npcId)
  12. Kaspersky Internet Security + ESET NOD 32 They ARE both AWESOME P.S: I used kaspersky for 2 years and nod for 1 but nod is easier to use.
  13. Stop Posting The Same Things Twice + In The WRONG Sections. Post About Your PRoblem... here : http://www.maxcheaters.com/forum/index.php?board=64.0 Or Just Use SEARCH.
  14. 1st It's an ENGLISH Section and u MUST Speak English Here. 2nd. DONT Double Post 3rd. Use The Search Button , And You Will Find What You Want / Need
  15. WTF IS GOING ON.. He hide it cause its an exploit and we dont wanna be fixed or something. STOP ASKING WHY DID HE HIDE IT HE HAS HIS REASONS. replying while u cant see the topic is SPAM Reported
  16. 1st. Don't Double Post 2nd. If It's Hidden , We Can't Give You The Link To Download It. Its Forbidden. If We Were Able To Give It , Then Why To Hide It?
  17. I Cant See The Error.. Post a Better Quality Screenshot. + Scroll Up The Gameserver. We Cant Understand The Error Like That.
  18. Are U Sure You Have That One?? Anyway , For Saying That, If The MySQL Is Installed There It Should Work. I Dont Know Why It's Not Working. Anyone Has Another Idea? S:
  19. w8 a sec. You Have MySQL Server Installed?? If Yes , Which Version? Answer Me Asap , In Order tO help you asap
  20. You Have Inserted Wrong MySQL Directory. Go tO Database_Installer.bat And Press Edit ( Επεξεργασία) Find The Line : set mysqlBinPath=C:\Program Files\MySQL\MySQL Server 5.0\bin And Set Your MySQL's Path. Save It And Run It Again.
  21. U are right.. but the 2nd one that is fakoykas epic trader works perfect. try that one.
  22. My Friend... You Should Just Search... http://www.maxcheaters.com/forum/index.php?topic=30530.0 http://www.maxcheaters.com/forum/index.php?topic=13877.0
  23. Look. If im not mistaken this buffer is Oneo Dev Team Ones. It Is With JSCript. So Look What You Will Have To Do. go to the buffers folder and take the folder with the name 9999_NPCBuffer and place it into gameserver/data/jscript/custom delete the 9997_CustomBuffer or sth rr the srvr and you are ok.
  24. Well , For Interlude My Opinion Is That The Best Pack Is L2JFree Last Rev. But Oneo's Last Rev. Is Good Too. But All Have Problems.. Like A Friend Says You Have To www.go.to.learn.java.com In Order To Fix Them... About The Update , Yes I Think It's Possible.
  25. Maybe With +65535 Armor + Jewels All Can Have These Stats. I Dont Know In Which Server It Is. ( I Mean Yours Or A Private One ) But It's Just Enchanted Armor + Jewels.. There Is Not Possibility To Do This With Other Way. Anyway.. It Would Be Nice To Tell In Which Server Is This. P.S: I Want Them Too... xD ( If There Is a Way.. Except Photoshop ^_^ )
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock