Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. rAthena doesn't use GM levels. The command still works, but likely the group IDs you have aren't identical to the GM levels (consider using getgroupid() instead).
  2. Euphy

    R> new command

    OnInit: bindatcmd("deal",strnpcinfo(0)+"::OnDeal"); end; OnDeal: if (getarraysize(.@atcmd_parameters$)) announce implode(.@atcmd_parameters$," "),0,0xFF0000; end;
  3. I doubt you'll get someone to code this (and do a good job) for free. There's no way to check if the player actually voted, because you'd need a response from the vote site itself to verify.
  4. if (.off) end; // your script announce ...; // last line set .off,1; initnpctimer; waitingroom "[service unavailable]",0; end; OnTimer30000: stopnpctimer; set .off,0; delwaitingroom; end;
  5. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/skill.conf // Allows players to skip menu when casting Teleport level 1 // Menu contains two options. "Random" and "Cancel" skip_teleport_lv1_menu: yes
  6. I didn't update the version since I only added one variable, all the links should point to the fixed script now (SVN updated in r16781).
  7. @darristan: I apologize, that's fixed now.
  8. If you double-click on a tab, you can rename it.
  9. @Vanyrl: That's a very good point. In v1.1a, NPC kills now compare monster name instead of monster ID (so killing any Goblin will count, for example). Thanks for the idea!
  10. Euphy

    npc request

    if (Zeny >= zeny_amount) { set Zeny, Zeny-zeny_amount; } end; Consider reading: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt
  11. Hunting Missions updated to v1.1. Mostly small things, the most important being delay calculation and a matching monster name check (ex. so you don't get multiple Goblins to hunt).
  12. http://rathena.org/board/topic/65433-emperium-breaker-ladder/ http://www.eathena.ws/board/index.php?showtopic=274491
  13. Euphy

    npc request

    if (BaseLevel == max_level && countitem(your_item) >= item_amount) { atcommand "@allskill"; delitem your_item, item_amount; } end;
  14. My code would be fine, as it only gives the skill if you're under the specified level.
  15. http://rathena.org/board/topic/65579-judas-client-side-area/
  16. This would require a source modification. [Moved to "source requests".]
  17. Euphy

    Quest NPC

    Just wrote one! It's the "Hunting Missions" script: http://rathena.org/board/topic/64394-%E2%9C%B0-euphys-scripts-%E2%9C%B0/
  18. http://rathena.org/board/files/category/101-sprites-palettes/
  19. OnPCLoginEvent: if (getskilllv("MC_INCCARRY") < 10) skill "MC_INCCARRY",10,0; end;
  20. @darristan: I thought about that, but it's not as fun if you get to choose your mission. This is all luck! xD
  21. Added a Hunting Missions quest. Try it!
×
×
  • Create New...