
vmlinuz
Members-
Posts
285 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by vmlinuz
-
Kserei kaneis re paidia ti pezei me to walker?
vmlinuz replied to vmlinuz's topic in Request Support [Greek]
Den se poiano ti enoeis oti oloi to fixaroun tora? -
Kserei kaneis re paidia ti pezei me to walker?
vmlinuz replied to vmlinuz's topic in Request Support [Greek]
se polous server px gracia final kai gracia epilogue bgazei ena verify faill -
Oi perissoteroi server simera exoun ena thema me to walker...! Mipos exei kaneis idea ti mporei na simbenei?
-
[Request]Skills Problem
vmlinuz replied to vmlinuz's question in Request Server Development Help [Greek]
Bump!!! Kaneis tpt?? -
Einai dinaton kapoia skills px ton Kamel opos gia paradeigma Rush Impact Enumalize Blade rush,na ta kanei mono sta mobs kai oxi se ena pvp gia paradeigma ston emeny... Dokismeno an einai px se enemy clan i se duel i se aplo flag.... Dld se pvps pano den to kanei...Eno sto xp ginonte kanonika.... Exei kaneis tpt sto noutou? Euxaristo ek ton proteron....
-
[HELP]PailakaDevilsLegacy
vmlinuz replied to vmlinuz's question in Request Server Development Help [L2J]
Vitality lvl 4? -
It missing from reward for the vitality lvl 4... # author - RosT import sys from com.l2jserver.gameserver.model.actor.instance import L2PcInstance from com.l2jserver.gameserver.instancemanager import InstanceManager from com.l2jserver.gameserver.model.entity import Instance from com.l2jserver.gameserver.model.quest import State from com.l2jserver.gameserver.model.quest import QuestState from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest from com.l2jserver.gameserver.network.serverpackets import PlaySound qn = "129_PailakaDevilsLegacy" #NPC DISURVIVOR = 32498 SUPPORTER = 32501 DADVENTURER = 32508 DADVENTURER2 = 32511 Pailaka2nd = [18623,18624,18625,18626,18627] CHEST = 32495 #BOSS KAMS = 18629 HIKORO = 18630 ALKASO = 18631 GERBERA = 18632 LEMATAN = 18633 #ITEMS SWORD = 13042 ENCHSWORD = 13043 LASTSWORD = 13044 KDROP = 13046 ADROP = 13047 HERBS = [8601,8602,8604,8605] CHESTDROP = [13033,13048,13049,13059] #REWARDS PBRACELET = 13295 PERING = 13293 AMOUNTS1 = [1,2] AMOUNTS2 = [1,2,3,4,5,6,7,8,9,10] def isWithinLevel(player): if player.getLevel() > 67: return False if player.getLevel() < 61: return False return True class Quest (JQuest): def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) self.questItemIds = [KDROP,ADROP,SWORD,ENCHSWORD,LASTSWORD,13033,13032,13048,13049,13059,13150] self.currentWorld = 0 def onEvent (self,event,st): cond = st.getInt("cond") htmltext = event if event == "32498-02.htm": st.set("cond","1") st.setState(State.STARTED) st.playSound("ItemSound.quest_accept") if event == "32498-05.htm": st.set("cond","2") st.playSound("ItemSound.quest_accept") if event == "32501-03.htm": st.set("cond","3") st.playSound("ItemSound.quest_middle") st.giveItems(SWORD,1) return htmltext def onTalk (self,npc,player): npcId = npc.getNpcId() htmltext = "32498-01.htm" st = player.getQuestState(qn) if not st: return htmltext id = st.getState() cond = st.getInt("cond") if id == State.CREATED: st.set("cond","0") if npcId == DISURVIVOR: if cond == 0: if not isWithinLevel(player): htmltext = "32498-no.htm" st.exitQuest(1) else: return htmltext elif id == State.COMPLETED: htmltext = "32498-no.htm" elif cond == 1 or cond == 2: htmltext = "32498-06.htm" else: htmltext = "32498-07.htm" elif npcId == SUPPORTER: if cond == 1 or cond == 2: htmltext = "32501-01.htm" else: htmltext = "32501-04.htm" elif npcId == DADVENTURER: if st.getQuestItemsCount(SWORD) > 0 and st.getQuestItemsCount(KDROP) == 0: htmltext = "32508-01.htm" if st.getQuestItemsCount(ENCHSWORD) > 0 and st.getQuestItemsCount(ADROP) == 0: htmltext = "32508-01.htm" if st.getQuestItemsCount(SWORD) == 0 and st.getQuestItemsCount(KDROP) > 0: htmltext = "32508-05.htm" if st.getQuestItemsCount(ENCHSWORD) == 0 and st.getQuestItemsCount(ADROP) > 0: htmltext = "32508-05.htm" if st.getQuestItemsCount(SWORD) == 0 and st.getQuestItemsCount(ENCHSWORD) == 0: htmltext = "32508-05.htm" if st.getQuestItemsCount(KDROP) == 0 and st.getQuestItemsCount(ADROP) == 0: htmltext = "32508-01.htm" if player.getPet() != None: htmltext = "32508-04.htm" if st.getQuestItemsCount(SWORD) > 0 and st.getQuestItemsCount(KDROP) > 0: st.takeItems(SWORD,1) st.takeItems(KDROP,1) st.giveItems(ENCHSWORD,1) htmltext = "32508-02.htm" if st.getQuestItemsCount(ENCHSWORD) > 0 and st.getQuestItemsCount(ADROP) > 0: st.takeItems(ENCHSWORD,1) st.takeItems(ADROP,1) st.giveItems(LASTSWORD,1) htmltext = "32508-03.htm" if st.getQuestItemsCount(LASTSWORD) > 0: htmltext = "32508-03.htm" elif npcId == DADVENTURER2: if cond == 4: if player.getPet() != None: htmltext = "32511-03.htm" elif player.getPet() == None: st.takeItems(SWORD,st.getQuestItemsCount(SWORD)) st.takeItems(ENCHSWORD,st.getQuestItemsCount(ENCHSWORD)) st.takeItems(LASTSWORD,st.getQuestItemsCount(LASTSWORD)) st.giveItems(736,1) st.takeItems(13033,st.getQuestItemsCount(13033)) st.takeItems(13048,st.getQuestItemsCount(13048)) st.takeItems(13049,st.getQuestItemsCount(13049)) st.takeItems(13059,st.getQuestItemsCount(13059)) st.giveItems(PBRACELET,1) st.addRewardExpAndSp(10810000, 950000) st.set("cond","5") st.setState(State.COMPLETED) st.playSound("ItemSound.quest_finish") st.exitQuest(False) instanceObj = InstanceManager.getInstance().getInstance(player.getInstanceId()) instanceObj.setDuration(300000) htmltext = "32511-01.htm" player.getVitalityManagement().setVitalityPoints(20000,true) elif id == State.COMPLETED: htmltext = "32511-02.htm" return htmltext def onKill(self,npc,player,isPet): st = player.getQuestState(qn) if not st: return npcId = npc.getNpcId() cond = st.getInt("cond") if npcId == KAMS and st.getQuestItemsCount(KDROP) == 0: st.giveItems(KDROP,1) elif npcId == ALKASO and st.getQuestItemsCount(ADROP) == 0: st.giveItems(ADROP,1) elif npcId == LEMATAN: st.set("cond","4") st.playSound("ItemSound.quest_middle") Dwarf = self.addSpawn(DADVENTURER2,84990,-208376,-3342,55000,False,0,False,npc.getInstanceId()) elif npcId in Pailaka2nd: if st.getRandom(100) < 80: st.dropItem(npc,player,HERBS[st.getRandom(len(HERBS))],AMOUNTS1[st.getRandom(len(AMOUNTS1))]) elif npcId == CHEST: if st.getRandom(100) < 80: st.dropItem(npc,player,CHESTDROP[st.getRandom(len(CHESTDROP))],AMOUNTS2[st.getRandom(len(AMOUNTS2))]) else: st.dropItem(npc,player,13150,1) QUEST = Quest(129,qn,"Pailaka Devil's Legacy") QUEST.addStartNpc(DISURVIVOR) QUEST.addTalkId(DISURVIVOR) QUEST.addTalkId(SUPPORTER ) QUEST.addTalkId(DADVENTURER) QUEST.addTalkId(DADVENTURER2) QUEST.addKillId(KAMS) QUEST.addKillId(ALKASO) QUEST.addKillId(LEMATAN) QUEST.addKillId(CHEST) for i in Pailaka2nd: QUEST.addKillId(i)
-
[SHARE] L2 OPEN BRASIL EPÍLOGUE PROJECT
vmlinuz replied to johnscott's topic in Server Development Discussion [L2J]
hmmm interest -
I want good developer to help me about my server!!! With $$ ofc!
-
Our server will be ready to welcome all new players for its official opening today at 20:00. We will be delighted to see you in game for the opening night. We are sorry for having to change the starting date from 12:00 to 20:00 Regards Dev™
-
Merry Christmas to all....
-
L2 Ikaros is a epilogues server created by players who loves the game and want to create a perfect gaming experience for other L2 players who want a fair and balanced server. The Dev team will always be there to help you in any way it can (Ingame and Forum). We hope we see you all ingame, enjoying and being part of our L2 community. HF Dev™. L][ikaros web site www.l2ikaros.com Rates RateXp = 5 RateSp = 5 RatePartyXp = 3 RatePartySp = 3 RateDropAdena = 5 RateDropSealStone = 5 RateDropItems = 5 RateDropCommonItems = 5 RateRaidDropItems = 5 RateRaidDropJewels = 1 RateDropSpoil = 5 RateDropManor = 5 RateExtractFish = 5 RateQuestsReward = 3 RateQuestsAdenaReward = 3 Enchant rates EnchantChanceWeapon = 66 EnchantChanceArmor = 66 EnchantChanceJewelry = 66 EnchantChanceElement = 50 BlessedEnchantChanceWeapon = 66 BlessedEnchantChanceArmor = 66 BlessedEnchantChanceJewelry = 66 Features Wedding System Team vs. Team Event Team vs. Team CUSTOM Event L2J Banking System Offline trade/craft Anti-PK Features AntiFeed Pvp/pk Announce Raid Events Protections Multibox Protection Floodprotector Walker/Bot protection DDos Protection Antifeed Protection More Features Gracia Epilogue Areas Full Hellbound And more....
-
[GR] Poio einai kalhtero pes 11 or Fifa 11
vmlinuz replied to R1aKoC's topic in Other Multiplayer Games
Oxi pragmati o Finito exei dikaio An kai pezw xronia pro giati to Fifa einai a8lio twra omos nomizo oti to fifa aksizei na to dokimasw... Kai simfona me ta videos ontos pragmati einai kalutero Episeis simfono oti me ta kalutera grafika den alazei kati... Istoria tou pexnidiou einai kathara kai mono to game play kai tpt allo! Tora an fenonte poio omorfoi den alazi kati! I ousia kanei tin diafora :P Psifizo Fifa 11 Ablepi!! -
[Share] L2Phoenix, Shaitan edition v94
vmlinuz replied to vmlinuz's topic in Server Development Discussion [L2J]
Go there (Click here) be a memeber and you will get the access(i hope so :p) But first try the compiled files from Here ..! -
[Share] L2Phoenix, Shaitan edition v94
vmlinuz replied to vmlinuz's topic in Server Development Discussion [L2J]
Access to the SVN and Trac for team members. -
[Share] L2Phoenix, Shaitan edition v94
vmlinuz posted a topic in Server Development Discussion [L2J]
L2Phoenix, Shaitan edition v94 Epilogue Added quests: _196_SevenSignSealOfTheEmperor. _197_SevenSignTheSacredBookOfSeal _198_Embryo (Questline seven seals fully implemented). _692_HowtoOpposeEvil. The combination of folders and html html-ru, an assembly-oriented russkoyazynyh users. Fix: UD tanks Fix: Bug with Celestial (must Styles) Ai BizarreCocoon Fix calculate grade penalty. Added setting to limit the songs and dances. Improved the bat files to run the server under Windows. Settling Stakato Nest on epilogue. Check-FoG by an epilogue. Processing time modifier buffs. Added new option. Teleport for the community. Save User points TP. Added simple baffer in the community. Changed table character_variables, it is recommended to remove the old and new supply. Vesper SA for Douals. GM command to reset the rollback of all skill goals reset_skill_cool. Added check to use the community. Properties в самом Added an option which spawn in the console displays the request to add the spawn to the database (altsettings.properties at the very end). Configs added to the price for baffer. Download: Team site: Access to the SVN and Trac for team members. SVN: https://mysvn.ru/Shaitan/Shaitan_Epilogue Trac: http://trac.mysvn.ru/Shaitan/Shaitan_Epilogue/timeline -
[Share] L2Phoenix, Shaitan edition v17
vmlinuz replied to scripersan's topic in Server Development Discussion [L2J]
Only the best? :P They using l2phoenix sources :p starting from 20715 They fixed many errors but the source is closed :( Nice work...! Them 1st project http://www.maxcheaters.com/forum/index.php?topic=188081.0 :P -
[Share] L2Phoenix, Shaitan edition v17
vmlinuz replied to scripersan's topic in Server Development Discussion [L2J]
ooo ty :) :D :D :D :D :D :D :D -
[Share] L2Phoenix, Shaitan edition v17
vmlinuz replied to scripersan's topic in Server Development Discussion [L2J]
Not bad! but i cant find infos about Shaitan! -
To dokimase kaneis?
-
Xrisimotata kai epitreponte! eixan grapse 5-6 atoma oti to vriskan polu kalo kai oti tous arese! Kai ti eixa balei dld?Link apo ola ta teams pou asxolounte me to l2j den ebala packs ta urls tous apo to site tous!
-
Eixa kanei ena topic sxetika me links kai diafora alla sto Eng section l2j!Kai egine delete! Poios to ekane kai gia poion logo Den to lew eironika oute eristika apla rwtaw mipos eixa balei kati pou den eprepe gia na kserw na min taleporoume 2 wres kai meta na min uparxei!