Jump to content

Avisek

Inactive Member
  • Posts

    167
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Avisek

  1. I have Martysama source You can not know it, probably because you dont have that source. Yes, but in sources there are pieces of sash system.. If you have that source, look into ItemData.h on +-205th line.
  2. Hello, does somebody implemented shoulder-sash system into Martysama source? I have the newest version and there are some sash "hints" when i find "ENABLE_ACCE_COSTUME_SYSTEM" and when I put it on me, It does not appear. Has somebody implemented this system? Thanks.
  3. I tested it again using different values (1).Time is same as was.
  4. I tried that but not successfully, i will try it again.
  5. Hello, When Can I change time of removing name lock? When I drop items from mobs, name lock dissapears in 20 seconds. Where Can I increase it?
  6. Hello, I could ask you for question. How can I setup music in specific map - I want to play music in specific map. How can I do it? Anyone know solution? Thank you.
  7. Hello, how can I change output in binary source from .exe to .bin? It should be not able to rename or open? Can you help me, please?
  8. Hello, I have made quest, that inputs values into database "report". I input those characters: And in db saves: I have set charsets (db in fields and options), also in charset of server. I really dont know, where is problem.. Could you help me, please? :/
  9. Thank you very much for solution and explanation.. You are god!
  10. Hello, I am creating report system using quest. I created new function and quest. But when I use that quest, it inputs my name ("who") into "reported" column.. And "reported" text is nowhere.. quest (it is only testing quest): quest report_button begin state start begin when letter begin cmdchat("report_button "..q.getcurrentquestindex()) end when button or info begin local who = pc.get_name() local reported = "Make DDS!" report_log(who, reported) syschat("DEBUG COMPLETE") end end end It is calling function report_log, which I created.. There is function: questlua_global.cpp: int _report_log(lua_State * L) { CQuestManager& q = CQuestManager::instance(); const char* who = ""; const char* reported = ""; if (lua_isstring(L, 1)) who = lua_tostring(L, 1); if (lua_isstring(L, 2)) reported = lua_tostring(L, 2); LogManager::instance().ReportLog(who, reported); return 0; } And this function is called by "ReportLog" log.cpp: void LogManager::ReportLog(const char* who, const char* reported) { Query("INSERT DELAYED INTO report (who, reported) VALUES('%s', '%s');", get_table_postfix(), who, reported); } Could somebody help me, please? :/
×
×
  • 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.