Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. check your files.. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/scripts_custom.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_athena.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_guild.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_jobs.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_main.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_mapflags.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_monsters.conf https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/scripts_warps.conf
  2. phang_cas01,69,34,0,0 monster Barricade 1905,1,7200000,0,"NPCNAME::OnEVENTLABEL"; edit the label..and create those label in the NPC... put the setcell stuff there.... once the monster die...it will trigger the Label
  3. move the NPC to a "hidden" location or any place that player cant reach..... OnClock1210: movenpc strnpcinfo(0),219,181; end; OnClock1213: movenpc strnpcinfo(0),1,1; // Coordinate (1,1) is unreachable by default... end;
  4. Emistry

    Item Exchange

    why not you use search engine ?? there is alot exchanger you can find with it... for example... http://rathena.org/board/topic/56715-exchanger/page__hl__exchanger http://rathena.org/board/topic/53971-credit-exchanger-easy-modification-non-zeny-eater/page__hl__exchanger http://rathena.org/board/topic/53517-coin-exchanger/page__hl__exchanger you can just simply edit the item required / gained.
  5. http://rathena.org/wiki/Adding_a_Script even though inside the script .. the header doesnt have coordinate / npc sprite... but it is still a so-called "NPC"... the way to add it into the server... its the same ~
  6. setwall got 4 parameter for coordinate ?? you sure *setwall "<map name>",<x>,<y>,<size>,<dir>,<shootable>,"<name>"; @Kurby to remove the barricade after the monster died... it is better to make a label for the monster.... for example..when all barricade destroyed.. set the cell can wall again that's why you need another label to make the cell walkable / remove the wall.
  7. Emistry

    where ?

    i think you can try this... remove these... https://rathena.svn....nk/src/map/pc.c strcpy(tmp_soutput, (data == 0) ? msg_txt(503) : msg_txt(59)); // The night has fallen... intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); .... .... ... ... strcpy(tmp_soutput, (data == 0) ? msg_txt(502) : msg_txt(60)); // The day has arrived! intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0);
  8. Emistry

    Hi to all

    why not you use those already made by Euphy ? or mine ? Euphy Script support multiple items.. mine only support 1 items otherwise...you can just create another simple npc..that call for these 2 npc..
  9. tried this ?? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/items.conf // How much time must pass between item uses? // Only affects the delay between using items, prevents healing item abuse. Recommended ~500 ms // On officials this is 0, but it's set to 100ms as a measure against bots/macros. item_use_interval: 100
  10. show it...and check for error in the map server if there is any and post it. show us how you edit the script as well...
  11. @Post#7 / Post#8 / Post#9 mobcount("<map name>","<event label>")
  12. if( Zeny < 100 ) { mes "You need 100 zeny."; close; } set Zeny,Zeny - 100;
  13. @justin please elaborate your problem....
  14. did you add it correctly ?? http://trac.rathena.org/changeset/16427/rathena what error you encounter...show it script ? http://trac.rathena.org/changeset/16428/rathena
  15. http://rathena.org/board/topic/68124-how-can-i-set-the-atcommand/#entry123260 try storage:true
  16. only edit these part.. // Wait X Seconds before warped out. set .Sec,5; // Lowest GM Level to Bypass set .LowGMLvl,80; setarray .Map$, // <Mapname>,<Mode>.... ( Mode = Bitwise Value ) Max of ~64 Map Settings. "prtg_cas01","63", "prtg_cas02","64", "prtg_cas03","7", "prtg_cas04","56", "prtg_cas05","1"; this part only for certain class.. // Certain Jobs ( Specific Your Own Class Restriction ) if( getarg(0) & 64 ) setarray .@Restrict[getarraysize(.@Restrict)],4046,4002,4004,4013,4011; http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2012-%E3%80%91e-scripts-collection/page__st__60__p__78173#entry78173
×
×
  • Create New...