Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. i think it's because of the mob sprite..somehow the error will be shown randomly when you are using emprerium sprite with other mob id ... you can just change the mob id / sprite to any other you want ...
  2. if( compare( strcharinfo(3),"jupe_ele" )
  3. Openkore should have the guide somewhere in the forum that guide users to extract or solve these packets issues.
  4. both description and script are documented here.. trunk/doc/item_bonus.txt
  5. trunk/conf/char_athena.conf //=================================== // Pincode system //=================================== // NOTE: Requires client 2011-03-09aragexeRE or newer. // A window is opened before you can select your character and you will have to enter a pincode by using only your mouse. // Default: yes pincode_enabled: yes
  6. http://pastebin.com/raw.php?i=s3JKaycq Works on rA only the link work fine for me...
  7. if( strcharinfo(3) == "map1" || strcharinfo(3) == "map2" || strcharinfo(3) == "map3" || strcharinfo(3) == "map4" ){
  8. isnt that the GM menu enable GM to kill the NPC too ?
  9. OnNPCKillEvent: if( strcharinfo(3) == "jupe_ele" ) getitem 969,1; end;
  10. OnPCDieEvent: sleep2 1000; recovery 0; warp "mapname",x,y; end; OnPCLoginEvent: warp "SavePoint",0,0; end;
  11. refer this.. trunk/doc/permissions.txt
  12. if (killedrid == getcharid(3) || rand(100) > 40 ) end;
  13. OnNPCKillEvent: if( killedrid == 1002 ) end; getitem .item[ rand( .item_size ) ],1; end;
  14. OnInit: setarray .item,512,512,512,512; set .item_size,getarraysize( .item ); end; OnNPCKillEvent: getitem .item[ rand( .item_size ) ],1; end;
  15. try again http://pastebin.com/raw.php?i=SFnXUqmg fixed the wrong variable
  16. https://rathena.org/board/index.php?/files/file/2933-%7B?%7D/
  17. Version 1.3

    3766 downloads

    A script that basically used to control messy vendors in your server. Included one helper npc that enable Vendor to pick their spot easily. Some minor settings and math calculations are required to setup this. // x and y horizone .. setarray .x_line, 52, 49, 46, 43, 40; setarray .y_line, 68, 71, 74, 77, 65, 62; ( A Screenshot from a Server that using this scripts ) use at your own risk ~
    Free
  18. try http://pastebin.com/raw.php?i=SFnXUqmg
  19. if( @inventorylist_bound[.@i] && @inventorylist_equip[.@i] ){
  20. mes "and have a total of:"; mes "^ff0000"+( @deposit + countitem(8051) )+"^000000 ^fdd017Bank Note^000000";
  21. try this ? if( getstatus( SC_BERSERK ) ){ sc_end SC_BERSERK; percentheal -99,-100; }
  22. if it's variable ... mes "Your bank note = "+#BANKNOTES; if it's item ... mes "Your bank note = "+countitem( 12345 ); // 12345 = banknote id
×
×
  • Create New...