Jump to content

metin2team

Inactive Member
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    15
  • Feedback

    0%

Everything posted by metin2team

  1. not cube_open("cube open") but command("cube open")
  2. item->SetForceAttribute(idx, apply_type, apply_value);
  3. that was TEC-Interactive which is a pserver now xD. 2009
  4. As far as I know, Ymir hasn't shut down any server. I'm not sure but I think that it depends on the country in which you live.
  5. you've already made it clear that you don't need our help you just need Shogun's.
  6. creating a new function will be better IsLowGM as an example it will return a boolean value return (GetGMLevel() > GM_PLAYER && GetGMLevel() < GM_IMPLEMENTOR);
  7. you can use the navicat importer or use a script like this.
  8. 1- normal in every metin server. 2- you get this error when a player is disconnected with x,y in a "not movable position" so the server will get the player to the nearest movable position. 3- someone clicked on the npc but it doesn't have a quest. "when xx.chat."something" begin".
  9. if (m_dwLevel) { UpdateTextTailLevel(m_dwLevel); } try commenting those lines.
  10. it's really self-explanatory. this is missing [Hidden Content] from your map's folder.
  11. it's stored in the memory and refreshed with a "reload p" or a restart. the db mirroring is useless as @ds_aim said.
  12. I already have one. but nice work
  13. of course C++ to be used in lua like when "23:00:00".date begin or when 1432313412.time begin if I'm getting it right.
  14. –2,147,483,648 to 2,147,483,647 so any exp value in that table should be less than this value (2,147,483,647) # otherwise you have to change exp's data type.
  15. s_grid1(5, INVENTORY_MAX_NUM/5 / 2); to s_grid1(5, INVENTORY_MAX_NUM/5 / 3);
  16. wrong file's name or license file isn't included in the build.
  17. 1. stop the server. 2. truncate player.item. 3. start the server. or copy the item purge command and make one for the players and make it accessible by lua when login begin pc.item_purge() end
  18. mysql server isn't started or having problems when starting check the log file. (/var/db/mysql/hostname.err)
  19. are you using a self-compiled game? if yes, have you edited anything in char_item.cpp ? especially something with the "Bravery Cape" ? it has to be like this. case UNIQUE_ITEM_CAPE_OF_COURAGE: case 70057: case REWARD_BOX_UNIQUE_ITEM_CAPE_OF_COURAGE: AggregateMonster(); item->SetCount(item->GetCount()-1); break;
  20. function give_multiple_items(item, count) while(count > 200) do print("pc.give_item2(item, 200)") pc.give_item2(item, 200) count = count - 200 end if count > 0 then print("pc.give_item2(item, "..count..")") end end give_multiple_items(19, 1893) // output /* pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 200) pc.give_item2(item, 93) */ comment unnecessary lines.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.