Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. OnMinute00: // every hours. monster "mapname",x,y,"--ja--",<mobID>,999; monster "mapname",x,y,"--ja--",<mobID>,1,strnpcinfo(0)+"::OnKilled"; end; OnKilled: getitem rand( 25120,25126 ),1; end;
  2. you can try unitkill getcharid(3); refer unitkill
  3. just find the diff / changeset for npcskill and add it into your sources file. search inside here..and apply all the relevant changeset. http://trac.rathena.org/timeline
  4. try if( eaclass() & EAJL_UPPER ){ mes "Rebirth Class cant enter."; }else{ warp "mapname",x,y; }
  5. /?module=ranking&action=pvpranking make sure you have the required files inside the module folder... whenever you try to create a new pages in FluxCP...you are required to create the "php / html" file in both Module and Theme folder with same directory inside. anyway i think you can just try any PVP script out there that come with a compatible addon of PVP Ranking for FluxCP.
  6. did you used any "DotA" PVP ? those PVP script that broadcast custom sound clip ?? hmm ? if yes please double check ur sound files just in case you put in wrong folder..files broken...not compatible...and etc.
  7. if( BaseLevel != 20 ){ mes "Only Level 20 Can use."; close; } add this below the npc header.
  8. a better version of quest shop.. trunk/npc/custom/quests/quest_shop.txt
  9. try this. http://pastebin.com/raw.php?i=dXrcwNJ8 pm the npc like this this only generate lastest 127 records...
  10. remove the contents inside this file. System\TownInfo.lub
  11. trunk/npc/custom/jobmaster.txt
  12. for( .@x = 0; .@x < getarraysize( .@item ); .@x++ ) getitem .@item[.@x],1, $@partymemberaid[ .@i ]; like this ???
  13. manually patch all the updates ...
  14. http://rathena.org/board/topic/71389-afk-with-afk-hat/ clif_specialeffect(&sd->bl, 234,AREA); change the 234 to other effect numbers....
  15. set #L_Healing,#L_Healing + 1;
  16. set #L_Healing,"+1"; should be set #L_Healing,1; it's an INTEGER...not a STRING
  17. .@amount = countitem( <itemid> ); delitem <itemid>,.@amount; #KVMPOINTS += .@amount; dispbottom "Gained "+.@amount+" KVM Points.";
  18. mes "Value = "+#L_Healing+" points";
  19. it's just a item exchanger NPC...there are tons of this script in the forum...and even work better than this ...more simplified..and easier to edit/change... i dont think other might going to spend time and convert these long script.. basically..should be... checkitem ---> countitem additem ---> getitem refer countitem , getitem .... some item to item exchanger example Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] trunk/npc/custom/quests/quest_shop.txt
  20. we have @loadnpc / @unloadnpc / @unloadnpcfile @topic i dont think this is needed... most of the users..who have edited alot files in the npc folder..i think just simply type @reloadscript and reload all ...else just restart server.. i believe that add @reloadscript with different optional parameters is not necessary... not really useful...
×
×
  • Create New...