Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. @Jezu: I don't write/release scripts that are that specific, you can do it yourself and it's really pointless for most people imo. @Razor X: You can do it with my script, actually, just modify the "OnPCLoadMapEvent" label (read Emistry's script for reference). @GM Takumirai: Thanks for helping. ;3
  2. @Mysterious: You could also be very pretentious and condense the code into this: OnMinute00: if (gettime(3)%2) end;
  3. Easy way: create a "Third Job Suit" custom item with the following script: {},{ changebase roclass(eaclass()|EAJL_THIRD); },{ changebase Class; } Hard way: delete all the skill entries for third jobs in /db/ and /db/(pre-)re/.
  4. Goddameit wrote a "Morroc Card" that has the Earthquake skill addition you want: http://www.eathena.ws/board/index.php?showtopic=241741 Take the necessary server/client-side edits and create the extra skill tree entries.
  5. So you want a GM to input a player to reset stats for? I'd suggest whispering an invisible NPC or having your item call a function, since it's not what itemscripts are really meant for. But the code is pretty basic: if (getgmlevel() < 40) end; // Required GM level message strcharinfo(0),"Input a character name. The character must be online."; set .@return, getcharid(3); input .@n$; if (!attachrid(getcharid(3,.@n$))) { dispbottom "Character "+.@n$+" not online."; end; } resetstatus; attachrid(.@return); dispbottom "Stats reset."; delitem <item_id>,1; end;
  6. Item type 11, and for item script: if(select("Change Sex:Cancel")==2) close; delitem 23001,1; changesex;
  7. I moved all the non-release topics, hit the "report" button if something doesn't fit in the category it's in. :3
  8. Use the WeeDiffGen plugin.
  9. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/mob_branch.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/mob_boss.txt
  10. If you look in your /mobs/ folder, you'll see that the only monsters you can find via Convex Mirror are those spawned with the "boss_monster" command. The Bio MVPs are spawned via script instead, because they are randomized; there isn't a script equivalent to "boss_monster", so you can't use Convex Mirror.
  11. With REMODE enabled "Emperium" is a plant-type that takes 1 damage.
  12. That sounds like quite a large source mod that no one would be willing to do for free. :<
  13. Spacing never matters, lol.
  14. You can't use decimals, period. o_o
  15. Yeah, this is a bit unnecessarily confusing~ But you'll always find the information you need by reading the function itself. The arguments, in order: <required ID>,<output ID>,<success if rand(1,100) is above this number>,<success if rand(1,100) is below this number>,<Zeny x 1000>,<required ID>,<required ID amount>,<required ID 2, optional>,<required ID 2 amount, optional>
  16. Then you can change this line: if (strcharinfo(0) == getguildmaster(getcastledata(strcharinfo(3),1))) end; Into this: if (getcharid(2) == getcastledata(strcharinfo(3),1)) end;
  17. The "search" button.
  18. https://rathena.svn....d/agit_main.txt They already spawn at 00:01 every day (24 hours). // Treasure Room Spawn Template //============================================================ - script Gld_Trea_Spawn::Gld_Trea_Spawn -1,{ end; OnClock0001: If you wanted the spawns once a week, you'd specify a weekday using gettime(4), ex.: if (gettime(4) != 3) end; // Don't spawn unless it's Wednesday. And of course do the same for WOE SE.
  19. Euphy

    Floating Rates

    You have to separate the event labels, for the reason I posted. o_o When you calculate "getusers(1)" when a player logs out, that still includes the attached player, so you need to subtract one from that value.
  20. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt That's everything you'll ever need to know. If you still have questions, read it again.
×
×
  • Create New...