Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. ^ Follow my suggestion? It works for sure. o.o (265 as max level for all configurations, delevel upon level up if quest not complete.)
  2. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/job_db1.txt Arguments 3 & 4
  3. @MelMel: No, it eats up too many resources. There are already schedule displays.
  4. set .@n, getmapusers("pvp_n_8-5"); waitingroom "PvP [" +.@n +" player"+((.@n==1)?"":"s")+"]",0,"PvP Warp::OnStart",1; ref: Tips_and_Tricks_(Scripting)#Compact_IF_Statement
  5. I can't believe people are still trying to copy this quest after all these years... ._. @TS: Better to add very, very large experience requirements from 256-265 (under 2^31, of course), as inconsistencies in exp.txt/MAX_LEVEL are not intended to happen. @Emistry: It'd be much more efficient to use OnPCBaseLvUpEvent as it triggers a lot less often.
  6. freeloop(1) before a large loop, freeloop(0) after it.
  7. Just pointing out that it's very easy to inject malicious code when linking somebody a compilation.
  8. <video></video> Hit the "options" button above your chat bar. There's a server-side database edit and an LUA skill table edit for that. Increase damage: src\map\battle.c, search for AC_DOUBLE. To change the name, client-side LUA skill table edit. -- (more complicated source edit) Use Inno Setup, it's fairly fail-proof if you know what you're doing (everything's in the help file). Add themes into the "theme" folder... o.o
  9. http://rathena.org/wiki/mapflag#restricted.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_nocast_db.txt
  10. > http://rathena.org/b...-easy-as-1-2-3/
  11. Masao changed names around in the WOE FE scripts at some point, so everyone's WOE Controllers broke~ The debug message was added in r16564 to help me get my own controller working, xD.
  12. 1: Tabs in header and mapflag. 2: enablenpc / disablenpc.
  13. @Jezu: Thanks for pointing that out! I've fixed that in v1.1a by adding this check before finishing: if (!countitem(getarg(2))) { dispbottom "Refine failed. Ticket not found."; close; } You'll pretty much have to rewrite the script to make it into an NPC, xD.
  14. 0,0 = random coordinates You probably just need to update your kRO.
  15. The Homu-S script is unofficial as of now, we're still waiting for a capture of that too.
  16. You must be in REMODE for both to work.
  17. OnPCKillEvent: if (getcharid(3) == killedrid) end; setarray .@n$[0],strcharinfo(0),rid2name(killedrid); detachrid; set .@pvpmap$,"prontera"; // PVP map query_sql("SELECT account_id FROM `char` WHERE `last_map` = '"+.@pvpmap$+"' AND online=1;",.@aid); for(set .@i,0; .@i<getarraysize(.@aid); set .@i,.@i+1) if (attachrid(.@aid[.@i])) { dispbottom .@n$[0]+" has killed "+.@n$[1]+"!"; detachrid; } end; `last_map` doesn't get requeried immediately, though.
  18. Euphy

    Getmapusers

    No. You can use getpartymember and loop through the party array if you don't want to do an SQL query, but that's the only way for guilds.
  19. // -- Usable for Only 1 Time set .Based,1; // [ 0 - Account Based / 1 - Character Based ] if( ClassHelper == 1 || #ClassHelper == 1 ) end;
  20. @Decimal: http://pastebin.com/raw.php?i=Y6bmmwz4
  21. Ah, kay. How would you use bindatcmd though? o.o Edit: oh, I suppose you could bind all available commands and do a map check that way.
  22. http://rathena.org/wiki/Mapflag#nocommand
  23. Oh my god... please use functions or something, this is just plain scary:
  24. Delete the "next" after "getexp".
×
×
  • Create New...