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

Insoquantum

Постоялец
  • Публикаций

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

  • Посещение

  • Отзывы

    0%

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

  1. Отличный новогодний подарочек от ловели на данный момент. Спасибо. С НГ всех
  2. Insoquantum

    LameUpdater_SKIN by XaPu3Ma

    Спасибо +++. P/s Ух и долго у меня сжимает файлы ужс просто.
  3. Добро. Вечером отпишу.
  4. Вечером вариант что Dangerous написал и кодировку. На работе, нету возможности. На Windows7 x86 запускаю.
  5. Дак у меня нету же в пути русских символов. может в батнике что-то? @echo off title Login Server / L2J-Dev.ru :start echo Starting AuthServer. echo. REM если на машине 2 явы REM set PATH=C:\Program Files\Java\jdk1.7.0_21\bin java -server -Dfile.encoding=UTF-8 -Xms1024m -Xmx1024m -Xbootclasspath/p:../lib/incore.jar -cp config;../lib/* org.mmocore.authserver.AuthServer if ERRORLEVEL 2 goto restart if ERRORLEVEL 1 goto error goto end :restart echo. echo Server restarted ... echo. goto start :error echo. echo Server terminated abnormaly ... echo. :end echo. echo Server terminated ... echo. pause
  6. Ребят подскажите в чем проблема ЛС? D:\Emulators\serv\authserver>я╗┐@echo off "я╗┐@echo" не является внутренней или внешней командой, исполняемой программой или пакетным файлом. D:\Emulators\serv\authserver>title Login Server / L2J-Dev.ru D:\Emulators\serv\authserver>echo Starting AuthServer. Starting AuthServer. D:\Emulators\serv\authserver>echo. D:\Emulators\serv\authserver>REM ╨╡╤Б╨╗╨╕ ╨╜╨░ ╨╝╨░╤И╨╕╨╜╨╡ 2 ╤П╨▓╤Л D:\Emulators\serv\authserver>REM set PATH=C:\Program Files\Java\jdk1.7.0_21\bin D:\Emulators\serv\authserver>java -server -Dfile.encoding=UTF-8 -Xms1024m -Xmx10 24m -Xbootclasspath/p:../lib/incore.jar -cp config;../lib/* org.mmocore.authserv er.AuthServer Exception in thread "main" java.lang.NullPointerException at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:491) at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:486) D:\Emulators\serv\authserver>if ERRORLEVEL 2 goto restart D:\Emulators\serv\authserver>if ERRORLEVEL 1 goto error D:\Emulators\serv\authserver>echo. D:\Emulators\serv\authserver>echo Server terminated abnormaly ... Server terminated abnormaly ... D:\Emulators\serv\authserver>echo. D:\Emulators\serv\authserver>echo. D:\Emulators\serv\authserver>echo Server terminated ... Server terminated ... D:\Emulators\serv\authserver>echo. D:\Emulators\serv\authserver>pause Для продолжения нажмите любую клавишу . . . java 7u21
  7. На видео графа вроде норм...хотя...смотря с чем сравнивать.
  8. Нечаянно купил доступ , видимо зря...
  9. + тыкнул . Пасс пож И спасибо за шару
  10. Insoquantum

    Вопросы По Lovely

    та я не против. только зарплата 10-го. если до 10-го не решится проблема, обращусь к вам.
  11. Insoquantum

    Вопросы По Lovely

    Все работает кроме обменного пункта и нублеса
  12. Insoquantum

    Вопросы По Lovely

    Не пойму что там за ошибка может быть..... Если не трудно, посмотрите вы. Вы более опытней буду признателен. import sys from ru.catssoftware.gameserver.model.quest import State from ru.catssoftware.gameserver.model.quest import QuestState from ru.catssoftware.gameserver.model.quest.jython import QuestJython as JQuest qn = "90020_exchangeofficeD" NPC=[90015] QuestId = 90020 QuestName = "exchangeofficeD" QuestDesc = "Quests" InitialHtml = "1.htm" class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent (self,event,st) : htmltext = event if event == "0": return InitialHtml # ADENA-FA if event == "1": if st.getQuestItemsCount(57) >= 1000000000: st.takeItems(57,1000000000) st.giveItems(6673,1) st.playSound("ItemSound.quest_fanfare_middle") htmltext = "have.htm" st.exitQuest(1) else: htmltext = "nogf.htm" st.exitQuest(1) # APIGA-FA if event == "2": if st.getQuestItemsCount(9142) >= 5: st.takeItems(9142,5) st.giveItems(6673,2) st.playSound("ItemSound.quest_fanfare_middle") htmltext = "have.htm" st.exitQuest(1) else: htmltext = "nogf.htm" st.exitQuest(1) # GOLDEN APIGA-FA if event == "3": if st.getQuestItemsCount(9143) >= 1: st.takeItems(9143,1) st.giveItems(6673,10) st.playSound("ItemSound.quest_fanfare_middle") htmltext = "have.htm" st.exitQuest(1) else: htmltext = "nogf.htm" st.exitQuest(1) # FA-GOLDEN APIGA if event == "4": if st.getQuestItemsCount(6673) >= 30: st.takeItems(6673,30) st.giveItems(9143,1) st.playSound("ItemSound.quest_fanfare_middle") htmltext = "have.htm" st.exitQuest(1) else: htmltext = "nogf.htm" st.exitQuest(1) if htmltext != event: st.exitQuest(1) return htmltext def onTalk (self,npc,st): htmltext = "<html><head><body>I have nothing to say to you</body></html>" st = st.getQuestState(qn) st.setState(STARTED) return InitialHtml QUEST = Quest(90020,qn,"exchangeofficeD") 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) print "[VIP SHOP]Noble... ok 100%" print "[VIP SHOP]ExchangeofficeD... ok 100%"
  13. Insoquantum

    Вопросы По Lovely

    Такая же ситуация. scripts.cfg нету. устанавливаю VIP shop, который на макси. импорты сменил, все куда надо залил. вот логи: Error on: D:\Games\Build\game\data\scripts\quests\90020_exchangeofficeD\__init__.py.error.log Line: -1 - Column: -1 Traceback (innermost last): File "__init__.py", line 86, in ? TypeError: ru.catssoftware.gameserver.model.quest.State(): expected 0 args; got 2 это в scripts/quest . здесь же тоже нужно импорты меня правильно ?
  14. Insoquantum

    X100 Multi-Craft

    круто. 10-го октября куплю, если ещё в продаже будет. Апну темку и удачи в продаже.
  15. http://forummaxi.ru/topic/43281-gotovyj-server-h100/
  16. А ГС не ругается ? Т.к у меня в логине тоже была такая ошибка, но и в гейм сервере тоже писало траблу, что-бы я изменил путь к сборке. Пробелы убрал и ошибок как и не было.
  17. спасибо. забрал. + тыкнул )
  18. Человек хороший. Рекомендую
  19. Всё, не актуально. Спасибо Маше ) Ошибка не ясна была в общем. Просто, она свой дефолт с компа перенесла на мой комп и ГС заработал. Плюсы дал. Спасибки ещё раз)
×
×
  • Создать...