Jump to content

Oxxy

Members
  • Posts

    106
  • Joined

  • Last visited

Posts posted by Oxxy

  1. msgstringtable, что-то такое, смотрели? Там вроде тоже названия проф для клиента...

    З.Ы Это в клиенте.

    З.Ы.Ы Для спасибо есть кнопка( зелёная стрелка вверх ).

    З.Ы.Ы.Ы Я так и не понял, что за ошибка? Помойму было не оторбажение проф под хп баром. Если их в игре не отображает, то за это отвечают спрайты, скорее всего поможет обновленная rdata.grf

  2. Всем привет, вернулся в РО, скачал последнюю ревизию eAthena, скомпилировал и такие ошибки идут:

    post-1163-0-89126500-1339618801_thumb.png

    Стоял последний Вертриго, сейчас решил установить MySQL-5.5 /MySQL Community Server 5.5/ (Recommended).

    Но от этого ничего не изменилось. Также пробовал ставить более старые ревизии, выходит такая же ошибка. Идёт после компиляции / рекомпиляции, использую VS 2010 Express. Изменяю только пакетверсию в mmo.h. Готовые сборки работают нормально, если не рекомпилировать... Я уже не знаю что делать :(

    Строка 637:

    	{// update account table
    	if( SQL_SUCCESS != SqlStmt_Prepare(stmt, "UPDATE `%s` SET `userid`=?,`user_pass`=?,`sex`=?,`email`=?,`level`=?,`state`=?,`unban_time`=?,`expiration_time`=?,`logincount`=?,`lastlogin`=?,`last_ip`=?,`birthdate`=? WHERE `account_id` = '%d'", db->account_db, acc->account_id)
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  0, SQLDT_STRING, (void*)acc->userid,		   strlen(acc->userid))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  1, SQLDT_STRING, (void*)acc->pass,			 strlen(acc->pass))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  2, SQLDT_ENUM,   (void*)&acc->sex,			 sizeof(acc->sex))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  3, SQLDT_STRING, (void*)acc->email,			strlen(acc->email))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  4, SQLDT_INT,	(void*)&acc->level,		   sizeof(acc->level))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  5, SQLDT_UINT,   (void*)&acc->state,		   sizeof(acc->state))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  6, SQLDT_LONG,   (void*)&acc->unban_time,	  sizeof(acc->unban_time))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  7, SQLDT_LONG,   (void*)&acc->expiration_time, sizeof(acc->expiration_time))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  8, SQLDT_UINT,   (void*)&acc->logincount,	  sizeof(acc->logincount))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt,  9, SQLDT_STRING, (void*)&acc->lastlogin,	   strlen(acc->lastlogin))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt, 10, SQLDT_STRING, (void*)&acc->last_ip,		 strlen(acc->last_ip))
    	||  SQL_SUCCESS != SqlStmt_BindParam(stmt, 11, SQLDT_STRING, (void*)&acc->birthdate,	   strlen(acc->birthdate))
    	||  SQL_SUCCESS != SqlStmt_Execute(stmt)
    	) {
    637: 		   SqlStmt_ShowDebug(stmt);
    		break;
    	}
    }
    
    

    Компиляция с помощь Visual C++ 2008 выдаёт такой же результат, ошибок при компиляции нету.

    С rAthena другая проблема. Описание здесь:

    http://rathena.org/b...server-crashes/

  3. Hi, just downloaded latest avaible rAthena from svn. Compiled it without Renewal mechanics(disabled them) and changed mmo.h(packetver). When I'm trying to start servers it's ok, but when they fully started I have errors, if i will not close them, they will work(servers) and I can play on them.

    Windows XP HE SP3 English x32 =P

    post-1163-0-33278500-1339371629_thumb.png

  4. Hi Jonne, sorry for disturbing and my bad English.

    I'm using your achievements system, when I'm trying to recompile my EAthena, I'm having this error:

    obj_sql/map.o: In function `do_final':
    /home/screamro/eathena/src/map/map.c:3465: undefined reference to `do_final_achievement'
    obj_sql/map.o: In function `do_init':
    /home/screamro/eathena/src/map/map.c:3725: undefined reference to `do_init_achievement'
    obj_sql/clif.o: In function `clif_parse_LoadEndAck':
    /home/screamro/eathena/src/map/clif.c:8803: undefined reference to `achievement_update_explore'
    obj_sql/pc.o: In function `pc_authok':
    /home/screamro/eathena/src/map/pc.c:920: undefined reference to `achievement_loadTracker'
    obj_sql/pc.o: In function `pc_useitem':
    /home/screamro/eathena/src/map/pc.c:3810: undefined reference to `achievement_update_itemuse'
    obj_sql/pc.o: In function `pc_additem':
    /home/screamro/eathena/src/map/pc.c:3423: undefined reference to `achievement_update_itemfind'
    obj_sql/mob.o: In function `mob_dead':
    /home/screamro/eathena/src/map/mob.c:2014: undefined reference to `achievement_update_mob'
    obj_sql/script.o: In function `buildin_getachievementcutin':
    /home/screamro/eathena/src/map/script.c:3988: undefined reference to `achievement_exists'
    obj_sql/script.o: In function `buildin_getachievementname':
    /home/screamro/eathena/src/map/script.c:3932: undefined reference to `achievement_exists'
    obj_sql/script.o: In function `buildin_achieve':
    /home/screamro/eathena/src/map/script.c:3965: undefined reference to `achievement_exists'
    /home/screamro/eathena/src/map/script.c:3977: undefined reference to `achievement_achieve'
    obj_sql/script.o: In function `buildin_getachievementinfo':
    /home/screamro/eathena/src/map/script.c:3880: undefined reference to `achievement_exists'
    /home/screamro/eathena/src/map/script.c:3914: undefined reference to `achievement_searchTrackerIndex'
    obj_sql/atcommand.o: In function `atcommand_achieve':
    /home/screamro/eathena/src/map/atcommand.c:1733: undefined reference to `achievement_exists'
    /home/screamro/eathena/src/map/atcommand.c:1746: undefined reference to `achievement_achieve'
    obj_sql/atcommand.o: In function `atcommand_reloadachievement':
    /home/screamro/eathena/src/map/atcommand.c:1707: undefined reference to `reload_achievementDB'
    obj_sql/quest.o: In function `quest_update_status':
    /home/screamro/eathena/src/map/quest.c:254: undefined reference to `achievement_update_quest'
    collect2: ld returned 1 exit status
    make[1]: *** [map-server_sql] Error 1
    make[1]: Leaving directory `/home/screamro/eathena/src/map'
    make: *** [map_sql] Error 2

    Please, help me as fast as you can.

    Regards, Oxxy

  5. Помогли бы? Я тут столько кода изменил, написал, я любые ваши советы пробую, но помощи от вас никакой, разница большая, и не в БД, а в совершенно другой файл. Твой ОнИнит будет грузить сервер, как уг, а из файла он будет грузить только тогда, когда ты набрал команду, поэтому не флуди, если помочь не можешь. Думай прежде чем писать

  6. Можешь вообще этот мод поставить и не запариваться

    Посмотрел мод повнимательнее, это будет бредом прописывать в скрипт 1к шмоток..., нэ? /ok

    Еще повнимательнее посмотрел: All bindings will be removed on server restart and @reloadscript

    Уг мод.

    Ты думаешь тебе за пару часов напишут готовый вариант ?) У людей пятница, отдых. А в выходные отоспаться хочется =

    Я прошу готовый вариант? Я делаю, вы лишь помогите чутка

  7. В игре ок, набираю @cinfo 25000, нету креша, НО сообщение выводит: ??

    Похоже, что понял, почему выдаёт ??, надо работать с этой строчкой:

    clif_displaymessage(fd, msg_txt(value-24999));

    Как её правильно сделать? Т.к я смотрю, что он читает из msg_athena.conf файла...

  8. Краш сервера похоже.

    Файл cust_txt - db/custom.txt

    Структура примерно такова:

    25000: Название Вещи(ID)
    Даёт это, даёт то
    Можно взять квест у Этого нпц
    25001: Название Вещи(ID)
    Даёт это, даёт то
    Можно выбить с монстров

    Тоесть другими словами так:

    ИДкоторыйВыбранВкоманде: Название Вещи(ID)
    Даёт это, даёт то
    Можно взять квест у Джигурды

    и т.д.

  9. Ваши советы не работают. Проблему пытались решить сами, не получилось - написали, умники.

    Тиера, ты давай свою "защиту" дописывай. З.Ы здесь не капли агра. /no1

    З.Ы.Ы Написали сюда, потому-что с Афины все свалили сюда, логично же написать сюда, и сообщение написано там тоже, ответов бы услышать...

  10. :) Я заметил, что для многих, он почему-то недоступен о-о, даже я, заходил с компа(другого, в городе), и зайти не мог. Потестить защиту у меня можно, скинуть установщик могу.
  11. Установил себе такой: http://bitsecure-shield.com/ (Бесплатно.)

    Форум: http://bitsecure-shield.com/forum/

    Если что, помогу с установкой, т.к всё на Португальском.

    З.Ы НУЖНЫ ЛЮДИ ДЛЯ ТЕСТА ЗАЩИТЫ.

    З.Ы.Ы Имеется один небольшой баг, при "быстром" заходе на сервер, пишет Дисконнект. Это баг, разработчик его фиксит.

  12. ...Sry my english so bad, maybe you won't understand me :P But...

    1.) You need guild to play this event.

    2.) You won't PVP in Guild on these maps.

    3.) You need to destroy 2 Crystalls(red) to open passage to the Blue Crystall.

    4.) When you destroy these red Crystalls, you need to run or kill 30 Guardians (Bow, Sword etc guards.)

    5.) Then you'll need to destroy blue crystall.

    6.) Then event repeating =)

    7.) Event has a timer. When timer has 20 mins event stopping, and will be announce that event completed.

×
×
  • Create New...