Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/20/14 in all areas

  1. Added 2 permission, "false" by default --------------------------------------- *mail_create Allows user to write new mail. --------------------------------------- *mail_attach By default, user that can send mail isn't allowed to attach item or zeny, this permission will allow it. --------------------------------------- Download:mail_permissions-rA-9f8af95a884bcbf221e0fa833896a632350bac1e.diff
    1 point
  2. Change your event label to something other than the NPC's name
    1 point
  3. I think this can answer your question // When to re-display the guild notice // Upon teleporting (regardless of changing maps): 2 (official) // Upon changing maps: 1 // Do not re-display: 0 (disabled) guild_notice_changemap: 2 which you can see it here https://github.com/rathena/rathena/blob/master/conf/battle/guild.conf
    1 point
  4. DELETE FROM `table_name` WHERE condition1 = "string" OR condition2 = number AND condition3 = "whatever"; ex: DELETE FROM `global_reg_value` WHERE `str` = "#CASHPOINTS" AND account_id = 20000; to embed with a NPC script, it will be: query_sql("DELETE FROM `global_reg_value` WHERE `str` = "#CASHPOINTS" AND account_id = "+escape_sql(getcharid(3))+""); SQL::DELETE. Refer: http://www.w3schools.com/sql/sql_delete.asp how did I found this out? https://www.google.com/
    1 point
×
×
  • Create New...