Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. date MMDDhhmmYYYY MM = month DD = date hh = hour (24-hour format) mm = minute YYYY = year Example: this will set the date to March 20, 2012 @ 11:37 date 032011372012
  2. because rAthena = Renewal Athena. To get a pre-RE snapshot, you could use an older SVN revision.
  3. Here's the script command: getmapxy getmapxy #antibotmap$, #antibotx, #antiboty, 0;
  4. tell everyone to logoff, and wait a bit use @kickall to kick the remaining AFK players use @mapexit to shutdown the map-server login to SSH or whatever and stop the char-server and login-server processes
  5. - script no_gm_in_woe -1,{ OnPCLoadMapEvent: if (getmapflag(strcharinfo(3), mf_gvg_castle)) { if (getgmlevel()>0 && (agitcheck() || agitcheck2())) { announce "GMs are not allowed in the castles during WoE.", bc_self; warp "SavePoint",0,0; } } end; } aldeg_cas01 mapflag loadevent aldeg_cas02 mapflag loadevent aldeg_cas03 mapflag loadevent aldeg_cas04 mapflag loadevent aldeg_cas05 mapflag loadevent gefg_cas01 mapflag loadevent gefg_cas02 mapflag loadevent gefg_cas03 mapflag loadevent gefg_cas04 mapflag loadevent gefg_cas05 mapflag loadevent payg_cas01 mapflag loadevent payg_cas02 mapflag loadevent payg_cas03 mapflag loadevent payg_cas04 mapflag loadevent payg_cas05 mapflag loadevent prtg_cas01 mapflag loadevent prtg_cas02 mapflag loadevent prtg_cas03 mapflag loadevent prtg_cas04 mapflag loadevent prtg_cas05 mapflag loadevent schg_cas01 mapflag loadevent schg_cas02 mapflag loadevent schg_cas03 mapflag loadevent schg_cas04 mapflag loadevent schg_cas05 mapflag loadevent arug_cas01 mapflag loadevent arug_cas02 mapflag loadevent arug_cas03 mapflag loadevent arug_cas04 mapflag loadevent arug_cas05 mapflag loadevent
  6. Yes (Case 1): ^ this part is invalid. You probably meant something like this? case 1: also, line 130 should be: case 2:
  7. Did you checkout from the correct URL? cd to your rathena folder and type svn info The URL should start like: https://rathena.svn.sourceforge.net/svnroot/rathena/
  8. This wiki page explains how to use SVN. It will probably also help to read pages in Category:Installation, or just follow a guide (Category:Installation_Guides).
  9. if(Zeny<1000000) goto $nozenybc; You goto a label, not a variable name. Ex: if(Zeny<1000000) goto L_nozenybc; and also change line 50 to L_nozenybc:
  10. The first box is Hours, the second box is Minutes. To start at 20:00 and end at 21:00, fill in the boxes like this: Start Time 20 : 00 End Time 21 : 00
  11. Check your setting in ../conf/battle/status.conf // Will certain skill status-changes be removed on logout? // This mimics official servers, where Extremity Fist's no SP regen, // Strip Equipment, and some other buffs are removed when you logout. Setting is: // 0 = remove nothing. // 1 = remove negative buffs (stripping, EF) // 2 = remove positive buffs (maximize power, steel body...) // 3 = remove both negative and positive buffs. debuff_on_logout: 3 Change it to 0 or 1 if you want positive buffs to stay when players logout.
  12. Replace the existing file ../npc/guild/agit_controller.txt
  13. 1539
  14. Yea, looks like he has been committing over the past few months. http://code.google.com/p/fluxcp/source/list
  15. https://github.com/calciumkid/fluxcp-renewal/commits/master
  16. define the "zone" in ../conf/mapflag/restricted.txt set the skill(s) that can't be cast in that Zone in ../db/skill_nocast_db.txt
  17. Do you want to add them to bugreport:2265 ?
  18. You can checkout the latest revision from the SVN: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
  19. Edit the file ../conf/battle/misc.conf // Delay between using @duel in minutes duel_time_interval: 60 Change to 0 for no delay.
  20. I thought the max integer in the Athena Scripting Language was 2147483647 ? hmm need to test..
  21. Yes you're right, the output of gettimestr is a string. But when you store it in an integer variable it is automatically converted to an int. Maybe use the variable name: #LAST_ITEMDATE (account variable) or just LAST_ITEMDATE (if you want it to be per-char) set #LAST_ITEMDATE, gettimestr("%Y%m%d", 9);
  22. You could use gettimestr to generate a date serial YYYYMMDD, then each time they login (OnPCLoginEvent), check that date and see if it is less than today. If it is, give them the item and set their variable to YYYYMMDD.
  23. 1515
  24. @autoloot is a server-side command. In order to save that setting, you would need a server script. As for the other client-side settings resetting back to default, try what xRaisen suggested. If that doesn't work, it's possible your RO client doesn't have permission to write to files in the /RO folder (it saves settings by writing to the .lua files). Where is your RO folder located?
  25. Yes. 1. open your /sql-files/ folder 2. find all the upgrade_svn*****.sql files after your old SVN revisioin 3. execute the SQL queries in those files to update your SQL databases.
×
×
  • Create New...