Jump to content

Neblim

Members
  • Posts

    50
  • Joined

  • Last visited

Everything posted by Neblim

  1. Saw this in eA: http://eathena.ws/forum/topic/611-logout-after-attack/ I am no expert in source so I was wondering if there was a smart way of implementing this as it is quite useful. Heck, in my opinion there should be an option in battle/player.conf like the one below: Apologies for the topic-ception.
  2. May I request making this an unofficial - optional add-on then? The countdown function is far too convenient to not exist and could be set for X minute refresh intervals for minimum resource cost.
  3. Something like this should do the trick I believe. map,x,y,0 script #GMDoor 45,2,2,{ end; OnTouch: if(!getgroupid()) { donpcevent "Bouncer::OnNotCoolKid"; end; } warp "private_map_here",x,y; end; } map,x,y,d script Bouncer 899,{ end; OnNotCoolKid: npctalk "Stop right there! Cool kids only!"; end; }
  4. Basically all the code between the curly brackets of while(1) are looped infinitively. If we look at the script snippet Euphy posted, you'll just have to add new messages to the .@messages$ array by adding a new line as shown. Just make sure the last message ends in a semi-colon ( instead of a comma (,). Before: while(1) { setarray .@messages$[0], "your first message", "your second message", "etc"; announce .@messages$[rand(getarraysize(.@messages$))],0; sleep 300000; } end; After: while(1) { setarray .@messages$[0], "your first message", "your second message", "etc", "more etc"; announce .@messages$[rand(getarraysize(.@messages$))],0; sleep 300000; } end; Notice how the semi-colon needs to move to the end of the last message? Just keep this form and you'll have no problems. --- The sleep <time in milliseconds>; command makes the script execution hold for a designated time in milliseconds. Just to give you an idea of its purpose: if we were to remove the sleep <ms>; command, you'd theoretically have announcements showing up in-game with crazy speeds as there is nothing to delay the endless loop.
  5. Like this? http://pastebin.com/GXQcymEd
  6. I found these in db/pre-re/item_trade.txt and db/re/item_trade.txt You sure they are not these? If not, are they custom? How did you produce them?
  7. Neblim

    Fail Chii Ears

    Quote from rA wiki: and
  8. Any errors in the map server? The code below seems to work fine with a @loadnpc + @reloadscript. prontera,90,200,5 script Freebies 718,{ if( !#Freebies ) { set #Freebies,1; mes "Welcome...this is your gift..."; getitem 1530,1; getitem 2410,1; getitem 2630,2; getitem 14232,50; close; } else { mes "You have claim the Reward already."; close; } OnInit: waitingroom "Freebies Here",0; end; } Use the getitem2 script command. getitem2 <item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>{,<account ID>}; For example if you want to give a newbie one +7 Tidal Shoes you add: getitem2 2424,1,1,7,0,0,0,0,0; For giving 50 million zeny add: set Zeny, Zeny + 50000000;
  9. Try this out. Edit: Fixed a small loophole. fastest_typist.txt
  10. http://rathena.org/board/topic/57843-how-to-fix-this/ Use the search function.
  11. Just a small variable typo. Change mes "^FF0000"+.Strings$+"^000000"; into mes "^FF0000"+.String$+"^000000";
  12. Neblim

    Fail Chii Ears

    rA Wiki has all the info you need: Acts OR you can try and just search for the correct Chi Ears .act file. I'm sure it's somewhere out there. Edit: Found this GRF lying around. The .act file(s) you want are in chii.grf
  13. Neblim

    Woe Times

    There's a great document for explaining this: trunk/doc/woe_time_explanation.txt Hope it helps you.
  14. bonus bAtkRange,3; bonus bCritical,15; bonus bDex,15; bonus2 bAddEle,Ele_Ghost,100; I'm not quite sure what you meant with enhanced range... but this will increase your attack range by 3 cells.
  15. As far as I know there is no script command in rAthena to create items into the storage of someone. And thus you'll have to look for a source edit. B> storeitem / storeitem2 ^^
  16. Grab the latest exp table from the SVN if you don't have it: trunk/db/re/exp.txt Apparently it supports up to base level 1000. Just edit the max level values as you see fit. More information in the link below. rA Wiki: Edit Max Level
  17. You shouldn't make multiple topics about the same thing. :/ Anyways, here's the script you requested, which has been made by Lunar. I've corrected the problem with the compare script command and added the one quest I can see from the pictures you attached. Check the original thread for step by step instructions in adding more quests. It's not hard at all... Oh, and just a friendly advise: try to come up with your own quests and don't copy the quests the people of that server made up.
  18. Neblim

    custom set

    That little "code" is simply used to color text which you can see in the in-game description. Anything you write after that is colored until another color is defined. In other words everything after the caret (^) and the defined hex code for a color is colored accordingly. ^777777 is the hex code for a certain shade of gray so everything after that is gray. ^000000 is the hex color for black which is used to "un-color". Numbers in the hex work as the RGB color model, so ^RRGGBB
  19. Neblim

    custom set

    I'm not sure if any guides have been written on how to edit them as they are quite self explanatory to edit. Find the idnum2itemdesctable.txt / num2itemdesctable.txt files in your grf or data/ directory, open them up with notepad or any other text editor and start writing. The descriptions are just walls of text which can be edited quite freely. Here's the syntax: Easiest way to start doing it is by looking at other descriptions and copying the stuff around. Just make sure your edits match with the entries in your item_db.txt
  20. Best step by step guide you will probably ever find, The Judas Bible: http://supportmii.com/ro1/JudasBible.pdf Credits to the great man himself.
×
×
  • Create New...