Jump to content

goddameit

Members
  • Posts

    562
  • Joined

  • Days Won

    14

Everything posted by goddameit

  1. copy from eA http://pastebin.com/download.php?i=jucrEFeT
  2. You didn't give the script in first post, so that's why I ask what do you done.
  3. so what do you done in this script, I can't see and check script by screenshot. anyway, that error tell you that you're using invalid item 3333
  4. works well on my way after delay enough time to make sure out of player. http://i.imgur.com/YvbLa.jpg http://i.imgur.com/IAA7U.jpg
  5. then use initnpctimer & npc variable to make a out of player running system. player clicked -> record cid -> kicked -> initnpctimer -> OnTimer1 -> done query_sql -> end. that's all.
  6. { set .@cid,getcharid(0); atcommand "@kick "+strcharinfo(0); query_sql "SELECT `homun_id` FROM `char` WHERE `char_id` ="+.@cid+"",.@homun_id; sleep 1000; if( .@homun_id > 0 ) query_sql "UPDATE `homunculus` SET `level` = 1 WHERE `homun_id` ="+.@homun_id+""; }
  7. http://www.eathena.ws/board/index.php?showtopic=246336
  8. Idea : http://j.mp/SA5jEh [media=] [/media]This script need to add source code before using, all information is in file. Monster Defense.rar How to start this event ? create a party and click npc. Reward : no. Set each wave monster amount : setarray .@lv_amount[0],10,12,13,15,20; Set wave monster : --->1002 for(set .@i,1;.@i<=4;set .@i,.@i+1) { for(set .@j,0;.@j<.@lv_amount[.level-1];set .@j,.@j+1) callSub OnSpawn,.@i,.@j,1002; }
  9. your information can't help us to know what you done.
  10. donpcevent "mythmoz::OnBossInvasion"; donpcevent ---> NPC do specify event so OnBossInvasion: announce "The Boss has appeared!",bc_map,0x008000; sleep2 1000; monster "myth_dun01",0,0,"Bakonawa",2632,1,strnpcinfo(0)+"::OnBossDead"; end; strnpcinfo(0) <--- No player attached.
  11. info : http://rathena.org/b...end-only-added/ [media=] [/media] download : http://pastebin.com/....php?i=FiEWLR3x - MODIFY VERSION :
  12. cause your script has some bugs
  13. http://pastebin.com/raw.php?i=iLsUcv2k
  14. [media=] [/media]wiki(rule) : http://bit.ly/OJEPR --- How to start : 4 player click npc in 10 seconds to register. --- Seen eA's down so I re-upload it. --- Download : UNO.txt
  15. Introduction : http://www.eathena.ws/board/index.php?showtopic=275913 Download : http://pastebin.com/download.php?i=hJX8CyGU
  16. yes, it's need re-login so you can't take back your skull before you re-login there is other ways can do it, but I don't like it here is how that works: first record all you have (getinventorylist;) and delete all item except skull now use '@storeall' to storage all you item, cause you only have skull now, target complete after all, take back all your others item (getitem) and clean variable. but there is a problem on cart (but you can set that skull can't be put into cart).
  17. Test in SQL if(!countitem(7420))end; query_sql("SELECT `amount`,`id` FROM `storage` WHERE (`account_id` = "+getcharid(3)+"&&`nameid`=7420)",.@a,.@id); if(.@a==0) query_sql "INSERT `storage` VALUES ( NULL,"+getcharid(3)+",7420,"+countitem(7420)+",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)"; else query_sql "UPDATE `storage` set amount = "+(.@a+countitem(7420))+" where id = "+.@id; delitem 7420,countitem(7420);
  18. I use well, read the #1 again.
×
×
  • Create New...