Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. Yaa haha. didn't comply with his/her requirement. ha ha ha
  2. This! HAHA makes me roll on the floor! WTF?! HAHA
  3. Patskie

    Question

    Sir how will I execute it? http://lmgtfy.com/?q=execute%20sql%20query%20on%20phpmyadmin
  4. Patskie

    Warper

    disablenpc "<npc name (warp)>";
  5. Patskie

    Question

    There's an upgrade of SQL on SVN 17351. trunk/sql-files/upgrades/upgrade_svn17351.sql Execute this : ALTER TABLE `inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `favorite`; ALTER TABLE `cart_inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`; ALTER TABLE `storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`; ALTER TABLE `guild_storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`;
  6. if (getskilllv(SM_SWORD) <= 5) nude; *getskilllv(<skill id>) *getskilllv("<skill name>") This function returns the level of the specified skill that the invoking character has. If they don't have the skill, 0 will be returned. The full list of character skills is available in 'db/(pre-)re/skill_db.txt'. There are two main uses for this function, it can check whether the character has a skill or not, and it can tell you if the level is high enough.
  7. Patskie

    need help

    http://rathena.org/board/topic/68468-utility-multi-currency-shop/
  8. Ahh sorry haha me slow mind
  9. Try prontera,150,150,0 script Sample 100,{ set .@rand,rand(1,10); switch(.@rand) { case 1: mes <1st message>; break; case 2: mes <2nd message>; break; ... case 10: mes <10th message>; break; default: mes "Invalid choice"; break; } }
  10. Reach my 500 post :D

  11. http://rathena.org/board/topic/83835-request-script-that-give-item-monthly-or-daily/?p=205098
  12. Use atcommand on your script atcommand "@size 2";
  13. Check mo if tama ung client date mo sa trunk/src/common/mmo.h at ung packet_ver sa trunk/db/packet_db.txt i-default mo
  14. Survey NPC is good on your poll request just use search engine to find it
  15. Check if your client date sync with trunk/src/common/mmo.h and packet_ver on trunk/db/packet_db.txt
  16. Basta babaeng kumanta = <3

  17. account_id is a primary key, meaning all account_id values must be different from one another. In your case, You are duplicating "1" in account_id column which means that there is already an existing "1" value. Hope you understand my english haha
  18. Try : trunk/src/map/script.c /// Maximum amount of elements in script arrays #define SCRIPT_MAX_ARRAYSIZE 128
  19. Patskie

    MD5 Passwords

    Can make everything with encrypted data using MD5() UPDATE `login` SET `user_pass` = MD5('"+<NEW PASSWORD>+"') WHERE `account_id` = '"+getcharid(3)+"'";
  20. dunno if this will work on item. didn't try this using items lol. { query_sql "UPDATE `char` SET `name` = '"+escape_sql("<DESIRED NAME>")+"' WHERE `char_id` = '"+getcharid(0)+"'"; }
  21. You can ask @Cydh to tweak it and make it a npc instead of a command. But note that this is a paid one.
  22. - Npc give quest kill - poring 30 OnNPCKillEvent: if ( killedrid == 1002 ) killed = killed + 1; end; Add a check if a character already killed 30 porings. If so, give the prize : if ( killed != 30 ) end; killed = 0; getitem <id>,<amount>;
  23. As far as i know. No script can make a certain character do character select.
×
×
  • Create New...