Перейти к содержанию

CRXAS

Пользователи
  • Публикаций

    17
  • Зарегистрирован

  • Посещение

  • Отзывы

    0%

Весь контент CRXAS

  1. CRXAS

    Rguard

    ничего не написать writes nothing..
  2. CRXAS

    Rguard

    Когда rGuard enabled : http://prntscr.com/4cusue когда я нажимаю "Confirm" ничего не происходит, как исправить? в гс(гамесервер.бат) ничего не написано When i press "Confirm" nothing happens, how to fix? p.s. я не русс ) (dsetup.dll - всё отлично)
  3. кто может дать папка system с rGuard или ftGuard (для h5) Who can share system folder with rGuard or ftGuard? After i place dsetup.dll and press l2.exe nothing happens >.>
  4. CRXAS

    Lucera1,7 Дюпы/багы

    я не русс, не кто не знает мой сервер из россии )
  5. CRXAS

    Lucera1,7 Дюпы/багы

    хочу знат о баги/дюпы на луцера 1,7 (у меня есть l2jlovely 7 исходники). п.с. 2 сесия - фихед.
  6. CRXAS

    Аукцион Для Scoria

    Есть какой аукцион для scoria?(могу "адапть").
  7. CRXAS

    Lucera2

    о-м-г. НАДО РЦ6 ИЛИ РЦ7 , могу крякнут РЦ5(я думаю могу и рц6/рц7)... (п.с. я не русс..)
  8. CRXAS

    Lucera2

    знаю, мне нужно rc6 или rc7
  9. CRXAS

    Lucera2

    может быть, у кого-то есть Lucera2 RC6.0 или RC7 сборка и может "share"?
  10. http://rghost.net/53511840 Fixed dupe login ( added this fix: http://trac.l2jserver.com/changeset/6477/ ), gl
  11. CRXAS

    [ Шара ] Lucera Rc9

    привязана @ L2GameServer.java (getlicense) etc.etc. Config.java (isOwner) etc.etc...
  12. CRXAS

    Scoria Баг, Хелп!

    сры. Онлаин есть 1к, немогу включить debug. вот, это лог. http://pastecode.org/index.php/view/41484498
  13. CRXAS

    Scoria Баг, Хелп!

    1. я не русс, граматика - " ". У меня проблема, один человек может сделать сервер неустойчивым (половина игроков получает дц(дисконнект), и никто не может войти снова вернуться к серверу (никто не может логин)) - единственное решение - сервер перезагрузка. I have problem, one person can make server unstable ( half players gets disconnected, and no one can login again back to server) - only solution - restart server, help :oo p.s. Ест анти-ддос (hyperfilter.com (не реклама)), ест ламегуард.
  14. я был нео девелопер все файлы у меня.
  15. скачать катгуард клиент парт. download catsguard client part, it is used in many packs.
  16. Starsage.ru - extended scoria files (scoria extend сборка) (не реклама) L2Blaze.net (не реклама) L2Neo.com (не реклама) L2Deathland.com (не реклама) L2Free.com (не реклама) L2Alive.Net (не реклама) I know just one russian server - starsage. All others are international. п.с. ищу информацию о багы/дюпы п.с.с. я не русс тридно писать :/ но <33 форуммахи
  17. CRXAS

    Scoria Багы/дюпы

    ищу информацию о багы/дюпы для скория. адена квест фих: 371_ShriekOfGhosts/__init__.py # Contributed by t0rm3nt0r to the Official L2J Datapack Project. import sys from com.l2scoria.gameserver.model.quest import State from com.l2scoria.gameserver.model.quest import QuestState from com.l2scoria.gameserver.model.quest.jython import QuestJython as JQuest qn = "371_ShriekOfGhosts" #NPC PATRIN = 30929 REVA = 30867 #Quest items URN = 5903 PORCELAIN = 6002 # item : [chance, html] PORC = { 6003: [2, "30929-03.htm"], 6004: [32, "30929-04.htm"], 6005: [62, "30929-05.htm"], 6006: [77, "30929-06.htm"] } # mobid : [urn chance, porcelain chance] MOBS = { 20818: [38, 43], 20820: [48, 56], 20824: [50, 58] } class Quest(JQuest): def __init__(self, id, name, descr): JQuest.__init__(self, id, name, descr) def onEvent(self, event, st): htmltext = event urn = st.getQuestItemsCount(URN) porcelain = st.getQuestItemsCount(PORCELAIN) if event == "30867-03.htm": st.set("cond", "1") st.setState(STARTED) st.playSound("ItemSound.quest_accept") elif event == "TRADE": if urn == 0: htmltext = "30867-06.htm" elif urn <= 100: st.takeItems(URN, -1) st.giveItems(57, 7000 + urn * 1000) htmltext = "30867-07.htm" elif urn > 100: st.takeItems(URN, -1) st.giveItems(57, 13000 + urn * 1000) htmltext = "30867-08.htm" elif event == "30867-10.htm": htmltext = "30867-10.htm" if urn > 0: st.takeItems(URN, -1) st.giveItems(57,urn*1000) st.exitQuest(1) elif event == "APPR": if not porcelain: htmltext = "30929-02.htm" else: test = st.getRandom(100) st.takeItems(PORCELAIN, 1) htmltext = "30929-07.htm" for item in PORC.keys(): chance, html = PORC[item] if test < chance: st.giveItems(item, 1) htmltext = html break return htmltext def onTalk(self, npc, player): npcId = npc.getNpcId() htmltext = "<html><body>You are either not carrying out your quest or don't meet the criteria.</body></html>" st = player.getQuestState(qn) if not st: return htmltext id = st.getState() cond = st.getInt("cond") urn = st.getQuestItemsCount(URN) porcelain = st.getQuestItemsCount(PORCELAIN) if id == COMPLETED: htmltext = "<html><body>This quest has already been completed.</body></html>" elif id == CREATED and npcId == REVA: if player.getLevel() < 59: htmltext = "30867-01.htm" st.exitQuest(1) else: htmltext = "30867-02.htm" elif id == STARTED: if npcId == REVA: if not porcelain: htmltext = "30867-04.htm" else: htmltext = "30867-05.htm" elif npcId == PATRIN: htmltext = "30929-01.htm" return htmltext def onKill(self, npc, player, isPet): partyMember = self.getRandomPartyMemberState(player, STARTED) if not partyMember: return st = partyMember.getQuestState(qn) if not st: return npcId = npc.getNpcId() chance = st.getRandom(100) if npcId in MOBS.keys(): urnchance, porcchance = MOBS[npcId] if chance < urnchance: st.giveItems(URN, 1) st.playSound("ItemSound.quest_itemget") elif chance < porcchance: st.giveItems(PORCELAIN, 1) st.playSound("ItemSound.quest_itemget") return QUEST = Quest(371, qn, "Shriek Of Ghosts") CREATED = State('Start', QUEST) STARTED = State('Started', QUEST) COMPLETED = State('Completed', QUEST) QUEST.setInitialState(CREATED) QUEST.addStartNpc(REVA) QUEST.addTalkId(REVA) QUEST.addTalkId(PATRIN) for mob in MOBS.keys(): QUEST.addKillId(mob) for rew in PORC.keys(): STARTED.addQuestDrop(PATRIN, rew, 1) п.с. я не русс, трудно писать
  18. CRXAS

    Луцера 1,7 Багы?

    я не русс . спс за ответы.
  19. CRXAS

    Луцера 1,7 Багы?

    Прет, я хочу спросить о сборке луцера 1,7, есть там большие багы? (сервер х50)
×
×
  • Создать...