Jump to content

ScaredAngell

Members
  • Posts

    237
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by ScaredAngell

  1. Hey, im looking for some testers who speed some time on my project, check gameplay and some bugs. Interlude Rates 35 Something like a Old curshaders, vendetta, sublimity or loyal. But with my own ideas. more information via pm
  2. Hey, Im working on my private simple project. I just made custom full craftable set. Sets have fully working passive skills with record inside client. I made custom quest to get recipes. What do you thing?
  3. I dont know who update this armor stats but he fu cked up. For ex. Heavy Armory... IN Game: Maximum HP +845, Atk. Spd./P. Atk. +4%, P. Def. +12%, CON +3. Real: Maximum HP +1754, Speed +10, DEX -2
  4. I know this file, every music command have own ID, but how to say to client to play music by cordinate (my custom peace zone)?
  5. Hey, I search client files for lines who tell where start a music for ex. you're enter to village and game play music. Can i put them from server side or i must change this in client?
  6. Can u Reup on other hosting?
  7. Server and website down, what happen?
  8. Great, I will join, I love this features. This boys doin' great job.
  9. Great, I will join, I love this features. This boys doin' great job.
  10. Great, I will join, I love this features. This boys doin' great job.
  11. I thing they thing about cancellation skills from berserkers monsters inside.
  12. I thing they thing about cancellation skills from berserkers monsters inside.
  13. Hey, I use l2jnightly CT2.6 pack. When Ill add my custom npc after spawning they didn't have title and name. Look at screen below. What happen?
  14. I didn't know password.
  15. Links from this topic are dead. I said about death link before. :(
  16. Hey! Any one can re-up for me Epic Dark Knight Armor for Gracia Final? I can't take this anywhere. : ( Thanks
  17. Topic closed. Problem fixed.
  18. Nope... here is full code... ### By Foxer ######################### # Desleveador IL by Foxer # # v1.0 - 01/12/2009 - Buenos Aires # ###################################### 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 qn = "8205_MaxLvl" QuestName = "Leveling" QuestDesc = "quest" NPC = 5009 ITEM = 57 CDAD = 25000 class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent (self,event,st) : htmltext=event if st.getQuestItemsCount(ITEM) < CDAD : htmltext = "error.htm" st.exitQuest(1) elif event == "level" : st.takeItems(ITEM,CDAD) level = st.getPlayer().getLevel() + 9 exp = st.getPlayer().getStat().getExpForLevel(level) st.getPlayer().getStat().setExp(exp) st.getPlayer().getStat().setLevel(level) htmltext = "ok.htm" st.getPlayer().broadcastUserInfo() st.exitQuest(1) return htmltext def onTalk (Self,npc,player): st = player.getQuestState(qn) return "main.htm" QUEST = Quest(int(NPC),qn,"custom") QUEST.addStartNpc(NPC) QUEST.addTalkId(NPC) print "------------- Wczytano 8205 MaxLvl."
  19. Hey, i want NPC who can give 85lvl and 100% by one click. What parameter i need to use? Here is my code: elif event == "level" : st.takeItems(ITEM,CDAD) level = st.getPlayer().getLevel() + 9 exp = st.getPlayer().getStat().getExpForLevel(level) st.getPlayer().getStat().setExp(exp) st.getPlayer().getStat().setLevel(level) htmltext = "ok.htm" st.getPlayer().broadcastUserInfo() st.exitQuest(1) return htmltext
  20. Thanks B1ggBoss, its work perfectly. I carefully examined the code and I learned something new.
×
×
  • Create New...