Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. That's automatic when PVP mode is turned on, no?
  2. Euphy

    check weight?

    @Emistry: Weight is given in 0.1 increments, you'd want 400000.
  3. OnWhisperGlobal: query_sql("SELECT `account_id` FROM `char` WHERE `guild_id` = "+getcharid(2,@whispervar0$)+" AND `online` ="+1,.@guild); for(set .@i,0; .@j<getarraysize(.@guild); set .@i,.@i+1) getitem atoi(@whispervar1$),atoi(@whispervar2$),.@guild[.@i]; end; Whisper <character name>#<item id>#<item amount> to give an item to that character's guild.
  4. Euphy

    Hey!

    Euphy approves. xD
  5. Not quite sure what you want. If you're looking for an infinitely-looping aura, use: while(isequipped(your_item)) { specialeffect2 <id>; sleep2 <ms>; } If not, there's: *getstatus <effect type>{,<type>};
  6. This is a duplicate topic: http://rathena.org/b...-3rd-job-skill/ Please refrain from creating identical request topics, thank you.
  7. eAthena doesn't even have the constants for third jobs finished. This isn't possible.
  8. Euphy

    Hi to all

    My script looks almost identical to Lunar's. This is sorta outdated.
  9. Add it to any script or create a new script for it. If you don't know how to add scripts, read the Wiki article.
  10. Euphy

    Store Skull

    Goddameit, does that work without relogging? From what I've tested in the past, none of my SQL queries on active characters are applied until I log off.
  11. @Razor X: Add kick checks for classes and times you want to kick. I have no idea what you want so obviously I can't do it for you. @Jhosef: Timer, no, that's been suggested before and it eats too many resources to be worth using. Auto-announce, no, they always spawn at 00:01 and they aren't even controlled by this script.
  12. If you're keeping up with updates, you can add new commands very easily through Atcommand Events, r16471.
  13. No. Either outline the type of script you want, or do it yourself. Vague requests like "give me a quest" will get you nowhere.
  14. Euphy

    Autokick

    Use an infinite loop, while(1) { <do this>; sleep 3000; } end;
  15. You can't duplicate label names in NPCs, ever. Since OnBuyItem is a trigger label, you need to group and split the events in one label if you have multiple event instances.
  16. OnPCLoginEvent: if (! getgmlevel()) end; sc_start SC_EXPBOOST,<time>,<percent>; sc_start SC_ITEMBOOST,<time>,<percent>; end;
  17. Euphy

    Woe Question

    They spawn at 00:01 server time, every castle, every day.
  18. @GM Takumirai: That's in the configuration settings already.
  19. Order of operations... -50 is a constant, 10*skill_lv is done first. Edit: lol, 3 responses at the same time. xD
  20. Then use Zeny checks instead of item checks. It's not hard to figure out. if (Zeny < your_amount) { mes "You don't have enough Zeny."; close; } // Check set Zeny, Zeny - your_amount; // Remove
  21. Oh, you want it to target a player? That requires a lot of source editing, I would not suggest doing it (or, I doubt anyone will do it for free).
  22. Disable it? ._. http://rathena.org/wiki/Adding_a_Script
  23. I like your signature. *steals*

    1. DevilEvil

      DevilEvil

      Awesome tyranitarz :P.

  24. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/re/other/poring_war.txt
  25. Doesn't "changesex" already strip your equipment? Maybe it was the atcommand...
×
×
  • Create New...