Leaderboard
Popular Content
Showing content with the highest reputation on 02/09/14 in Posts
-
https://www.youtube.com/watch?feature=player_embedded&v=Wo-CdsISup8#t=0s All I need to make my own Rathena Server My Rathena Server Files Rathena Server Files (Media Fire) this is to help people having problem compiling Rathena Revision I hope this help you guys first download this using TortoiseSVN http://svn.code.sf.net/p/rathena/svn/trunk/ check this for latest data folder for your client http://rathena.org/board/topic/66962-basic-complete-renewal-data-english-folder/ next download MySQL so you can setup your servers database MySQL Installers then if you dont have any compiler like Visual Studio or Cygwin just download this file I attached. Rathena 2013 client folder Hercules Server Compiled Rebellion Class included Tools include latest .Lub Decompiler 2012-04-10aRagexeRE.rar 2012-07-02aRagexeRE.rar rAthena Rev.17520 Compiled.rar Rathena Rev 17523 Compiled .rar 2013-07-03aRagexe_patched.exe.rar Rathena Rev 17526 Compiled.rar rathena-master compiled.rar1 point
-
Evening all! I'm pleased to announce that the Community Manager position has now been filled by Xynvaroth. In addition to his duties as a Global Moderator, Xynvaroth has shown a good deal of initiative towards making the boards a cleaner place to discuss ideas and find information. This decision was made collectively by the Administrators, which shows that his hard work has not gone unnoticed. Congratulations, Xynvaroth! Akky~ P.S. This does also mean that the Global Moderator position is up for grabs by any of our current Moderating team. P.P.S We also have positions available for most International Moderator groups.1 point
-
use my eA account if you want to Username : UniversalSerialBus Password : loaders1121 point
-
//===== rAthena Script ======================================= //= Sample: PCRE //===== By: ================================================== //= MouseJstr //===== Last Updated: ======================================== //= 20100108 //===== Description: ========================================= //= Demonstrates PCRE commands. //============================================================ prontera,152,181,5 script MouseJstr 763,{ // hello Lquote0: npctalk "How do you do. Please state your problem."; end; // computer Lquote1: switch(rand(4)) { case 0: npctalk "Do computers worry you?"; break; case 1: npctalk "What do you think about machines?"; break; case 2: npctalk "Why do you mention computers?"; break; case 3: npctalk "What do you think machines have to do with your problem?"; break; } end; // name Lquote2: npctalk "I am not interested in names"; end; // sorry Lquote3: switch(rand(3)) { case 0: npctalk "Please don't apologize"; break; case 1: npctalk "Apologies are not necessary"; break; case 2: npctalk "What feelings do you have when you apologize"; break; } end; // I remember $@p2$ Lquote4: switch(rand(6)) { case 0: npctalk "Do you often think of "+$@p2$+"?"; break; case 1: npctalk "Does thinking of "+$@p2$+" bring anything else to mind?"; break; case 2: npctalk "What else do you remember?"; break; case 3: npctalk "Why do you recall "+$@p2$+" right now?"; break; case 4: npctalk "What in the present situation reminds you of "+$@p2$+"?"; break; case 5: npctalk "What is the connection between me and "+$@p2$+"?"; break; } end; // do you remember Lquote5: switch (rand(4)) { case 0: npctalk "Did you think I would forget "+$@p2$+" ?"; break; case 1: npctalk "Why do you think I should recall "+$@p2$+" now"; break; case 2: npctalk "What about "+$@p2$+""; break; case 3: npctalk "You mentioned "+$@p2$+""; break; } end; // if Lquote6: switch(rand(4)) { case 0: npctalk "Do you really think its likely that "+$@p2$+""; break; case 1: npctalk "Do you wish that "+$@p2$+"?"; break; case 2: npctalk "What do you think about "+$@p2$+"?"; break; case 3: npctalk "Really-- if "+$@p2$+"?"; break; } end; // i dreamt Lquote7: switch(rand(3)) { case 0: npctalk "Really-- "+$@p2$+""; break; case 1: npctalk "Have you ever fantasized "+$@p2$+" while you were awake?"; break; case 2: npctalk "Have you dreamt "+$@p2$+" before?"; break; } end; // dream about Lquote8: npctalk "How do you feel about "+$@p2$+" in reality?"; end; // dream Lquote9: switch(rand(4)) { case 0: npctalk "What does this dream suggest to you?"; break; case 1: npctalk "Do you dream often?"; break; case 2: npctalk "What persons appear in your dreams?"; break; case 3: npctalk "Don't you believe that dream has to do with your problem?"; break; } end; // my mother Lquote10: switch(rand(2)) { case 0: npctalk "Who else in your family "+$@p2$+""; break; case 1: npctalk "Tell me more about your family"; break; } end; // my father Lquote11: switch(rand(3)) { case 0: npctalk "Your father"; break; case 1: npctalk "Does he influence you strongly?"; break; case 2: npctalk "What else comes to mind when you think of your father?"; break; } end; // I want Lquote12: switch(rand(3)) { case 0: npctalk "What would it mean if you got "+$@p2$+""; break; case 1: npctalk "Why do you want "+$@p2$+""; break; case 2: npctalk "Suppose you got "+$@p2$+" soon"; break; } end; // I am glad Lquote13: switch(rand(3)) { case 0: npctalk "How have I helped you to be "+$@p2$+""; break; case 1: npctalk "What makes you happy just now"; break; case 2: npctalk "Can you explain why you are suddenly "+$@p2$+""; break; } end; // I am sad Lquote14: switch(rand(2)) { case 0: npctalk "I am sorry to hear you are depressed"; break; case 1: npctalk "I'm sure its not pleasant to be sad"; break; } end; // $@p2 are like "+$@p3$+" Lquote15: npctalk "What resemblance do you see between "+$@p2$+" and "+$@p3$+""; end; // "+$@p2$+" is like "+$@p3$+" Lquote16: switch(rand(4)) { case 0: npctalk "In what way is it that "+$@p2$+" is like "+$@p3$+""; break; case 1: npctalk "What resemblance do you see?"; break; case 2: npctalk "Could there really be some connection?"; break; case 3: npctalk "How?"; break; } end; // alike Lquote17: switch(rand(2)) { case 0: npctalk "In what way?"; break; case 1: npctalk "What similarities are there?"; break; } end; // same Lquote18: npctalk "What other connections do you see?"; end; // I was "+$@p2$+" Lquote19: switch(rand(3)) { case 0: npctalk "Were you really?"; break; case 1: npctalk "Perhaps I already knew you were "+$@p2$+""; break; case 2: npctalk "Why do you tell me you were "+$@p2$+" now?"; break; } end; // was I Lquote20: switch(rand(3)) { case 0: npctalk "What if you were "+$@p2$+" ?"; break; case 1: npctalk "Do you thin you were "+$@p2$+""; break; case 2: npctalk "What would it mean if you were "+$@p2$+""; break; } end; // I am Lquote21: switch(rand(2)) { case 0: npctalk "In what way are you "+$@p2$+""; break; case 1: npctalk "Do you want to be "+$@p2$+" ?"; break; } end; // am I Lquote22: switch(rand(4)) { case 0: npctalk "Do you believe you are "+$@p2$+""; break; case 1: npctalk "Would you want to be "+$@p2$+""; break; case 2: npctalk "You wish I would tell you you are "+$@p2$+""; break; case 3: npctalk "What would it mean if you were "+$@p2$+""; break; } end; // am Lquote23: switch(rand(2)) { case 0: npctalk "Why do you say AM?"; break; case 1: npctalk "I don't understand that"; break; } end; // are you Lquote24: switch(rand(3)) { case 0: npctalk "Why are you interested in whether I am "+$@p2$+" or not?"; break; case 1: npctalk "Would you prefer if I weren't "+$@p2$+""; break; case 2: npctalk "Perhaps I am "+$@p2$+" in your fantasies"; break; } end; // you are Lquote25: npctalk "What makes you think I am "+$@p2$+" ?"; end; // because Lquote26: switch(rand(3)) { case 0: npctalk "Is that the real reason?"; break; case 1: npctalk "What other reasons might there be?"; break; case 2: npctalk "Does that reason seem to explain anything else?"; break; } end; // were you Lquote27: switch(rand(3)) { case 0: npctalk "Perhaps I was "+$@p2$+""; break; case 1: npctalk "What do you think?"; break; case 2: npctalk "What if I had been "+$@p2$+""; break; } end; // I can't Lquote28: switch(rand(2)) { case 0: npctalk "Maybe you could "+$@p3$+" now"; break; case 1: npctalk "What if you could "+$@p3$+" ?"; break; } end; // I feel Lquote29: npctalk "Do you often feel "+$@p2$+" ?"; end; // I felt Lquote30: npctalk "What other feelings do you have?"; end; // $@p1$ I $@p2$ you $@p3$ Lquote31: npctalk "Perhaps in your fantasy we "+$@p3$+" each other?"; end; // why don't you Lquote32: switch(rand(3)) { case 0: npctalk "Should you "+$@p3$+" yourself?"; break; case 1: npctalk "Do you believe I don't "+$@p3$+""; break; case 2: npctalk "Perhaps I will "+$@p3$+" in good time"; break; } end; // yes Lquote33: switch(rand(3)) { case 0: npctalk "You seem quite positive"; break; case 1: npctalk "You are sure?"; break; case 2: npctalk "I understand"; break; } end; // no Lquote34: switch(rand(3)) { case 0: npctalk "Why not?"; break; case 1: npctalk "You are being a bit negative"; break; case 2: npctalk "Are you saying NO just to be negative?"; break; } end; // someone Lquote35: npctalk "Can you be more specific?"; end; // everyone Lquote36: switch(rand(4)) { case 0: npctalk "surely not everyone"; break; case 1: npctalk "Can you think of anyone in particular?"; break; case 2: npctalk "Who for example?"; break; case 3: npctalk "You are thinking of a special person?"; break; } end; // always Lquote37: switch(rand(4)) { case 0: npctalk "Can you think of a specific example?"; break; case 1: npctalk "When?"; break; case 2: npctalk "What incident are you thinking of?"; break; case 3: npctalk "Really-- always?"; break; } end; // what Lquote38: switch(rand(5)) { case 0: npctalk "Why do you ask?"; break; case 1: npctalk "Does that question interest you?"; break; case 2: npctalk "What is it you really want to know?"; break; case 3: npctalk "What do you think?"; break; case 4: npctalk "What comes to your mind when you ask that?"; break; } end; // perhaps Lquote39: npctalk "You do not seem quite certain"; end; // are Lquote40: switch(rand(2)) { case 0: npctalk "Did you think they might not be "+$@p2$+""; break; case 1: npctalk "Possibly they are "+$@p2$; break; } end; // default Lquote41: switch(rand(6)) { case 0: npctalk "Very interesting"; break; case 1: npctalk "I am not sure I understand you fully"; break; case 2: npctalk "What does that suggest to you?"; break; case 3: npctalk "Please continue"; break; case 4: npctalk "Go on"; break; case 5: npctalk "Do you feel strongly about discussing such things?"; break; } end; OnInit: defpattern 1, "([^:]+):.*\\shello.*", "Lquote0"; defpattern 1, "([^:]+):.*\\scomputer.*", "Lquote1"; defpattern 1, "([^:]+):.*\\sname.*", "Lquote2"; defpattern 1, "([^:]+):.*\\ssorry.*", "Lquote3"; defpattern 1, "([^:]+):.*\\si\\s+remember\\s+(.*)", "Lquote4"; defpattern 1, "([^:]+):.*\\sdo\\s+you\\s+remember\\s+(.*)", "Lquote5"; defpattern 1, "([^:]+):.*\\sif\\s+(.*)", "Lquote6"; defpattern 1, "([^:]+):.*\\si\\s+dreamt\\s+(.*)", "Lquote7"; defpattern 1, "([^:]+):.*\\sdream\\s+about\\s+(.*)", "Lquote8"; defpattern 1, "([^:]+):.*\\sdream\\s+(.*)", "Lquote9"; defpattern 1, "([^:]+):.*\\smy\\s+mother\\s+(.*)", "Lquote10"; defpattern 1, "([^:]+):.*\\smy\\s+father\\s+(.*)", "Lquote11"; defpattern 1, "([^:]+):.*\\si\\s+want\\s+(.*)", "Lquote12"; defpattern 1, "([^:]+):.*\\si\\s+am\\s+glad\\s+(.*)", "Lquote13"; defpattern 1, "([^:]+):\\s+(.*)\\s+i\\s+am\\s+sad\\s+(.*)", "Lquote14"; defpattern 1, "([^:]+):\\s+(.*)\\s+are\\s+like\\s+(.*)", "Lquote15"; defpattern 1, "([^:]+):\\s+(.*)\\s+is\\s+like\\s+(.*)", "Lquote16"; defpattern 1, "([^:]+):.*\\salike\\s+(.*)", "Lquote17"; defpattern 1, "([^:]+):.*\\ssame\\s+(.*)", "Lquote18"; defpattern 1, "([^:]+):.*\\si\\s+was\\s+(.*)", "Lquote19"; defpattern 1, "([^:]+):.*\\swas\\s+i\\s+(.*)", "Lquote20"; defpattern 1, "([^:]+):.*\\si\\s+am\\s+(.*)", "Lquote21"; defpattern 1, "([^:]+):.*\\sam\\s+i\\s+(.*)", "Lquote22"; defpattern 1, "([^:]+):.*\\sam\\s+(.*)", "Lquote23"; defpattern 1, "([^:]+):.*\\sare\\s+you\\s+(.*)", "Lquote24"; defpattern 1, "([^:]+):.*\\syou\\s+are\\s+(.*)", "Lquote25"; defpattern 1, "([^:]+):.*\\sbecause\\s+(.*)", "Lquote26"; defpattern 1, "([^:]+):.*\\swere\\s+you\\s+(.*)", "Lquote27"; defpattern 1, "([^:]+):.*\\si\\s+(cant|can't|cannot)\\s+(.*)", "Lquote28"; defpattern 1, "([^:]+):.*\\si\\s+feel\\s+(.*)", "Lquote29"; defpattern 1, "([^:]+):.*\\si\\s+felt\\s+(.*)", "Lquote30"; defpattern 1, "([^:]+):.*\\si\\s+(.*)\\s+you\\s+(.*)", "Lquote31"; defpattern 1, "([^:]+):.*\\swhy\\s+(don't|dont)\\s+you\\s+(.*)", "Lquote32"; defpattern 1, "([^:]+):.*\\syes\\s+(.*)", "Lquote33"; defpattern 1, "([^:]+):.*\\sno\\s+(.*)", "Lquote34"; defpattern 1, "([^:]+):.*\\ssomeone\\s+(.*)", "Lquote35"; defpattern 1, "([^:]+):.*\\severyone\\s+(.*)", "Lquote36"; defpattern 1, "([^:]+):.*\\salways\\s+(.*)", "Lquote37"; defpattern 1, "([^:]+):.*\\swhat\\s+(.*)", "Lquote38"; defpattern 1, "([^:]+):.*\\sperhaps\\s+(.*)", "Lquote39"; defpattern 1, "([^:]+):.*\\sare\\s+(.*)", "Lquote40"; defpattern 1, "([^:]+).*)", "Lquote41"; activatepset 1; end; } Taken from /doc/sample/npc_test_pcre.txt1 point
-
prontera,155,180,3 script Exchanger 1002,{ mes "Hi, what do you want?"; next; menu "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7255)+"",a1, "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7256)+"",a2, "Exchange 1 "+getitemname(7255)+" to 3 "+getitemname(7257)+"",a3, "Exchange 1 "+getitemname(7256)+" to 3 "+getitemname(7257)+"",a4, "Cancel",quit; quit: mes "Come again later!"; close; quit2: mes "Thank you!"; close; a1: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7255,1; goto quit2; } a2: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7256,1; goto quit2; } a3: if (countitem(7255)<1) { mes "Sorry, but you need 1 "+getitemname(7255); goto quit; } else { delitem 7255,1; getitem 7257,3; goto quit2; } a4: if (countitem(7256)<1) { mes "Sorry, but you need 1 "+getitemname(7256); goto quit; } else { delitem 7256,1; getitem 7257,3; goto quit2; } }1 point
-
Hi timo0o, ist jetzt natürlich schwer den Inhalt des Scripts nachzuvollziehen, ohne einen Einblick zu bekommen. Versuchen wirs so. Soweit ich weiß, ist defpattern & deletepset für das Disguise Event nötig. Meist musst man es glaub manuell nochmal installieren. Klick mich Ansonsten wäre es nett, wenn Du die Fehlermeldung posten könntest. Greets, WhiteEagle1 point
-
1 point
-
thanjs hehhe ..well hehe let's see o: i also forgot to add something at the end //script that checks the total points for the guilds during the agit start OnAgitEnd: //script that checkes the last castle played with its guild masters & members //script that compare the points and check which one has more //script that gives the prize to the winners just ideas @_@1 point
-
Oh u shouldn't even touch those clients present in kro files. Search for k3dt ragexe clients. Download it along with k3dt different for the same client date and if u r using 2013 clients it's best u use xdiff patcher. If u wanna use 2012 u must use shins different patcher. Rathen is already set to renewal when u download the server files so clients have nothing to do with the renewal or pre renewal.1 point
-
@Vy Low, what that Jaki said there, you can see "etc" that mean can be everything, and don't forget about "useful", for paid service provider (no matter what is it) maybe "etc" and "useful" can be have mean such "everything that can we provide to our client and it's worth so they can give payment for me". and then, how providers tell what they can do as useful contribution for rAthena? I think, even it's "pure" hosting provider, and if they try to put RO service, they have friend or staff that understand rAthena (emulator project) except they're forever alone? Try send a PM to rAthena's admins or reply here what that can you offer except donation.1 point
-
Schreib einfach default hin //packet_db_ver: 45 packet_db_ver: default Vergiss nicht in der clientinfo.xml auf 45 zu stellen. Der Server sagt ja das du 20 hast er aber 45 will. <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>sakray</servertype> <connection> <display>Server Name</display> <balloon></balloon> <desc></desc> <address>IP Adresse</address> <port>Port</port> <version>45</version> <langtype>10</langtype> Zu der exe. die 2013-08-07aRagexe arbeitet sehr gut mit der Revios die du benutzt.1 point
-
1 point
-
http://rathena.org/board/topic/87212-utility-promotional-code/ http://www.eathena.ws/board/index.php?showtopic=2707831 point
-
Edit in /trunk/db/re/job_maxhpsp_db.txt and add kagero job1 point
-
kRO Decompiled LUA: svn link: http://krotranslatedlua.googlecode.com/svn/trunk/ Changelog r2: Added rdata.grf files, r3: Added data.grf Files r4: Added System Files r5: Added March 13 Files r6: Added System Files[13 March] and Jan13 Files(That was deleted by me accidently) r7: Added March 21 Files Files Date: 21st March 2013. Dropping New Items Project Because of Lack of Time.1 point
-
Como veis hemos añadido a la sección española, los subforos que faltaban. -Cliente : Dudas, problemas, o gráfico. -Guias & F.A.Q.S: Publicación de Guias -Sección de Scripts.- Soporte o pedidos Empezaremos a mover cada tema a su sitio correspondiente para que haya un orden y el foro comience a tener un poco más de vida.1 point