L2JMobius

C6 Quest orc ride 2° option (I want to go to the town of shuttgart)

caioconc · 2 · 577

Offline caioconc

  • Heir
  • **
    • Posts: 33
When trying to locate the Timora Orc in Crypts of Disgrace (Town of Schuttgart - Crypts of Disgrace) to get 1 Timora Orc's Head. It is not possible since it is not spawned, when analyzing the table, I found however irregular attack and defense values. The quest also has an error to deliver the same item (Timora Orc's Head.)


Offline caioconc

  • Heir
  • **
    • Posts: 33
Code: [Select]
INSERT INTO `l2jmobiusc6`.`npc` (`id`, `displayId`, `name`, `serverSideName`, `title`, `serverSideTitle`, `class`, `collision_radius`, `collision_height`, `level`, `sex`, `type`, `attackrange`, `hp`, `mp`, `hpreg`, `mpreg`, `str`, `con`, `dex`, `int`, `wit`, `men`, `exp`, `sp`, `patk`, `pdef`, `matk`, `mdef`, `atkspd`, `aggro`, `matkspd`, `rhand`, `lhand`, `armor`, `walkspd`, `runspd`, `faction_range`, `isUndead`, `absorb_level`, `absorb_type`) VALUES ('27320', '27320', 'Timora Orc', '0', 'Quest Monster', '0', 'Monster.batur_orc', '20.00', '23.00', '20', 'male', 'Monster', '40', '342', '192', '13.43', '3.09', '40', '43', '30', '21', '20', '10', '0', '0', '44', '86', '30', '63', '253', '500', '333', '0', '0', '0', '88', '132', '0', '0', '0', 'LAST_HIT');
Code: [Select]
INSERT INTO `l2jmobiusc6`.`spawnlist` (`id`, `location`, `count`, `npc_templateid`, `locx`, `locy`, `locz`, `randomx`, `randomy`, `heading`, `respawn_delay`, `loc_id`, `periodOfDay`) VALUES ('6284684', 'schuttgart06_2512_01', '1', '27320', '56890', '-117250', '-3672', '0', '0', '0', '60', '0', '0');
INSERT INTO `l2jmobiusc6`.`spawnlist` (`id`, `location`, `count`, `npc_templateid`, `locx`, `locy`, `locz`, `randomx`, `randomy`, `heading`, `respawn_delay`, `loc_id`, `periodOfDay`) VALUES ('95541', 'schuttgart06_2512_01', '1', '27320', '56820', '-117250', '-3672', '0', '0', '0', '60', '0', '0');
Code: [Select]
case TIMORA_ORC:
{
if (st.isCond(6))
{
- //st.dropItems(TIMORA_ORC_HEAD, 1, 1, 600000)
+ st.giveItems(TIMORA_ORC_HEAD, 1);
st.setCond(7);
}
break;