Jump to content

Bahmut

Members
  • Posts

    382
  • Joined

  • Last visited

Everything posted by Bahmut

  1. Why don't you just use the JobMaster from the custom folder? npc/custom/jobs/jobmaster.txt
  2. Here: -<tab>script<tab>DayNight<tab>-1,{ OnInit: if ((gettime(3) < 6) || (gettime(3) >= 22)) night; end; OnClock0600: announce "The sun is rising. [6:00]",bc_all,0xEEEEEE; day; end; OnClock1800: announce "It's getting dark and the moon is rising. [18:00]",bc_all,0xEEEEEE; night; end; }
  3. You need a exp.txt in your db folder which has entries up to that level
  4. 1 Minute of Google: ftp://ragnarok.nowcdn.co.kr:20021/Patch/
  5. Here is an example: prontera,146,174,4 script Example Quest 727,{ if (que_Test == 1) goto L_QuestEnd; mes "[Quest Example]"; mes "here quest"; close2; set que_Test,1; atcommand "@adjgroup 2"; // 2 is just an example end; L_QuestEnd: mes "[Quest Example]"; mes "finish quest"; close2; set que_Test,0; atcommand "@adjgroup 0"; // Reset rights end; OnPCLoginEvent: if (que_Test == 1) atcommand "@adjgroup 2"; // 2 is just an example end; }
  6. This might help you: add in db/castle_db.txt: 100,job3_arch01,Breaker Room,test,1
  7. You could create a group with the same rights as the group id 0 but without @warp and then use: atcommand "@adjgroup <your new group id>"; But this will only work until the next relog. You could make it work forever by 2 ways. Use a SQL query to set the group id forever. I don't think there is a command for it. atleast i found none: *query_sql "your MySQL query", <array variable> {,<array variable>, ...}; Or check if the quest variable is set on login then use the atcommand: OnPCLoginEvent: if (que_Test >= 1) atcommand "@adjgroup <your new group id>"; end;
  8. Nevermind the forum software format it like this automaticly
  9. Which error appears? Could you please make a screenshot. If you are using lub files you should turn off the diff "read lua before lub"
  10. You have to use lub/lua files related to your client date. You can find the here: http://svn6.assembla...0Files%205.0.2/ You need to extract the archive to the "lua files" folder ind your "data" folder.
  11. Bahmut

    Custom @go

    Next time please search in the wiki first: @go
  12. Just change getgroupid() < 99 to getgroupid() == 99 It will look like this: - script gmsys -1,{ OnPCLoginEvent: if(getgroupid() == 99) { atcommand "@hide"; atcommand "@speed 0"; atcommand "@monsterignore"; dispbottom "Welcome GM "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); end; } end; }
  13. This may help you with the renewal stuff: http://rathena.org/wiki/REMODE#.2Fsrc.2Fmap.2Fconfig.2Frenewal.h
  14. Bahmut

    Patching rAthena

    If you are using Linux (Don't know if it apply to every version) just navigate to you trunk folder and use: svn update If you are using Windows just right click your trunk folder und click "SVN Update".
  15. There are lots of guides in the rAthena Wiki: http://rathena.org/wiki/Main_Page But you might want to start with this guide to start a local server: http://rathena.org/wiki/Installation_on_Windows This might help you too: http://rathena.org/wiki/Connecting
  16. There is no gm level anymore. It's called group id now and you only get extra rights if you give a gm a group declared in conf/groups.conf.
  17. Here is a guide: http://rathena.org/w...mpiling#Windows
  18. You may want to use this guide for this: http://rathena.org/wiki/Custom_Items
  19. I don't have a guide for working 2012 clients but i can recommend you to us an older client like 2011-05-15.
  20. Here you have a good installation guide for windows: Installation_on_Windows
  21. You extract the Lub files in the "data/lua files/" folder.
  22. This might help you: http://rathena.org/board/topic/62895-xray-client-that-is-compatible-with-eathena-15085-revision/
  23. Please look in the Wiki first: http://rathena.org/wiki/Custom_Items http://rathena.org/wiki/Custom_Mobs http://rathena.org/wiki/Custom_weapons
  24. There is a WoE setter in your npc/custom/ folder. WIth the Breaker Ladder I don't have a direct link but you might want to search the eAthena Board there was one released long time ago and it might also work on rAthena. EDIT: I found one on the eAthena Board but I don't know if it work with rAthena: http://www.eathena.ws/board/index.php?showtopic=233189&hl=emp+breaker+ladder
  25. what client date are you using? I can recommend you to use 2011-05-15 and I also recommend you to use rAthena instead of eAthena, because rAthena got alot of advantages compared to eAthena. If you search support for eAthena you are wrong in this board, because this is the rAthena Support Board. With the new RE Clients you also need the to your date related lub or lua files. Download: Clients: http://pyro-ro.com/l...f9ada587890c33b DiffPatcher: https://subversion.a...insDiffPatcher/ rAthena SVN: https://rathena.svn..../rathena/trunk/ Lub Files: http://svn6.assembla.com/svn/ClientSide/Lua_Project/lubs/Lub%20Files%205.0.2/
×
×
  • Create New...