Jump to content

SuperNovaX

Members
  • Posts

    83
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by SuperNovaX

  1. How to make in IG L2WAKER THAT, SO mages wont die when they out of mana and when thers no mana pots, Its like every times mage is out of mana, its been killed by mobs, cous when he ended up with no mana at the time when mob was attacking, he just stod there and waited for mana, then when he got a chance he used the spell and again no mana.. how to bypass that?? what technique should i use if i play on official servers? Ty
  2. I have a very noobie question - Is it possible to make IG walker upon death return to city, when hes in city go to NPC Buffer or Support Magic Buffer, buff himself, then go to gatekeeper, tp to that same spot and continue what he was doing?? :)) ty
  3. Creative?? I did that a year ago, only with different game..
  4. So one says, its not possible, other its possible, can some tell me is it possible to bypass bake ice, or safely delete it and still use the game
  5. Or what i need to change in l2phx to make it undetectable, what makes it detecable, and if someone has edited version of l2phx that isn't detecable, then please share :)
  6. I Searched the froum, and i saw that there was this adena bug, but now they dont sell recovery scrolls in grocery store... soooo I wonder.. if admins made that kind of foolish mistake, then maybe there is more bugs that people who play in l2terror would share? The server is kickass, no donations and goood online, a little bit laggy at evenings, but only in cities :) Sooo Anyone? PleasE? If you have some bug, then Pleeeese share, If you think its right, then Hide it under posts, but some bug atleast??? :)))) ThanKYou!!! Edit by Noble: Topic Unlocked 19-07-2008
  7. No, THey DOnt Sell Recovery At Grocery Stores no more :(
  8. http://img134.imageshack.us/img134/491/sdasfgassn6.jpg hers the picture!! so this is my problem, when i run server and loginserver, everythings okay, but when i run the game and i go to login, then choose server, and ok, he wont connect, and thers strange error ir gameserver, see the pic! Please Help!
  9. OMg, im useing Oneo interlude server l2j, thers missing alot of items that sould be, for example, i need l2day scrolls, but when i create them thers says - not such item found... now i need to get them can anyone tell me how can i fill that server with all items that needs to be????? or atlest where can i get l2day scrolllsssss? tnQ
  10. no, i wanto put it on web hosting server, that i payd for, not thorugh disk-w
  11. I USE THE FIRST ONE, BUT THE PROBLEM IS(READ FIRST POST) HOW CAN I CONfigure it if i want to have the registration files on my web hosting server???
  12. no, i just need good registration script, or help to set-up ACM registration
  13. I wanto make registration page, i downloaded acm, created database on my web host, but when im trying to register new acc all time it goes like that Login "mylogin" is allready registred! Choose another is there tutorial how to configure so it would work fine?
  14. ah,,, the buffer is for players with 40lvl or lower, not for 1lvl and lower O_O
  15. This is what i get, when its supposed to be buff selection :((( heres the code, there was buffs avaible if char is 40lvl or more i changed to 40lvl or less, but i guess something went wrong? if some1 could tell me what ??? 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=[40005] ADENA_ID=57 QuestId = 9998 QuestName = "NPCBuffer" QuestDesc = "custom" InitialHtml = "1.htm" print "importing custom: 9998: NPCBuffer" class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent(self,event,st): htmltext = event count=st.getQuestItemsCount(ADENA_ID) if count < 150000 or st.getPlayer().getLevel() > 40 : htmltext = "<html><head><body>You dont have enough Adena,<br> or your level is too low. You must be 40 or lower.</body></html>" else: st.takeItems(ADENA_ID,0) st.getPlayer().setTarget(st.getPlayer()) if event == "2": st.takeItems(ADENA_ID,16000000) st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4360,3),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4359,3),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4358,3),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4357,2),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4354,4),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4353,6),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4350,4),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4347,6),False,False) st.getPlayer().restoreHPMP() return "4.htm" st.setState(COMPLETED) if event == "3": st.takeItems(ADENA_ID,8000000) st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4352,2),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4351,6),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4355,3),False,False) st.getPlayer().restoreHPMP() st.getPlayer().useMagic(SkillTable.getInstance().getInfo(4356,3),False,False) st.getPlayer().restoreHPMP() return "4.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)
  16. Sooo, hello every1, this day my question is - how to change enchanting success rate, for example Arcana Mace needs less rate(%) than Dragonic bow, or Angel Slayer??? how to make rate different?
  17. :D hi again, you guys, now im searchin for good gmshop, i tryd Infinity but it started to bug when i edited him,, can find problem, its like when i change/add quest items in multisell, restart server and open the questitem catagory, it opens tatoos O-o wierd, huh? and the full interlude Oneo's shop its kinda filld with too much stuff, can anyone share, or give link to good, c4 - c6 gm shop, with quest items, weapons, shots, and such stuff, nothing much, and without any pics or something like that??? Please i need one like that :)
  18. so what i need to do to make only adena drop to the rate i need? :-\
  19. So i wanto change weight of mana/hp pots, in what file i can do it???? TY!
×
×
  • Create New...