Jump to content

WorldSeed

Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by WorldSeed

  1. Hello, I'm currently working on a C# Launcher and I wanted to add a Update method into it(Might be more added to the future). I would just like to know what sort of Patch does R.O. have when it comes to the behavior of it? Any answer would be great. P.S. I'm making it from scratch as a small project and I haven't personally tried Thor Patcher and Neon Cube.
  2. i like the design and stuff. But it seems to not make any sense if you have Account Panel and Register Account, what i would suggest is change either one of them with Community. but other than i'll rate it a 10/10
  3. instead of using a npc why not use the cash shop system or make it Quest type npc? + donation npc shouldn't be in town have them inside a warp with no skills allowed, unless the problem is npc timeout? but i could be wrong you can probably wait for @Emistry to solve the issue.
  4. Hello everyone, i would just like to asked if anybody here has the Fishing Ranking System. Either looking for a code or a guide on how to make one would be nice. thank you very much in advance. ?
  5. I see, just wondering which one should I be changing for the IP?
  6. I manage to install rathena for my windows OS for a localhost. I would just like to know how would i be able to release it to the public so that some of our friends can play and try to detect errors and bugs. thank you. P.S. Sorry if I'm in the wrong thread not sure where to post it.
  7. Sorry I'm not sure where to ask on this topic. Was just wondering for making a fluxtheme cp how can i add a Master Account?
  8. I was just wondering if someone would happen to have any item_db or monster_db for this certain mechanics? or is there a guide on how you can have a balance Revo Classic server?
  9. good evening. i was just wondering if someone would happen to have a floating rates that is only working lets say Friday 12am til Monday 12am?.. Then it would stop and repeat again on the following day(Friday)
  10. oh i would like to have like the one that pRO had. basically even if you're level 99 you could still grab lvl 1 crate instead of just going to lvl 6.
  11. was able to figure out the problem.
  12. would it be this one? 'MailerUseSMTP' => false, // Whether or not to use a separate SMTP server for sending mail. 'MailerSMTPUseSSL' => false, // Whether or not mailer should connect using SSL (yes for GMail). 'MailerSMTPUseTLS' => false, // Same as above SSL setting, but for TLS. This setting will override the SSL setting. 'MailerSMTPPort' => null, // When MailerUseSMTP is true: SMTP server port (mailer will default to 25). 'MailerSMTPHosts' => null, // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')). 'MailerSMTPUsername' => null, // When MailerUseSMTP is true: Authorized username for SMTP server. 'MailerSMTPPassword' => null, // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).
  13. Good evening to everyone. I was just hoping if someone would be able to pin point a certain file for a Flux CP. I was already able to send email confirmation but i when i try to click the link it keeps sending me to my host. How would i be able to get it verified and return to my flux website? anyone??
  14. I would just like to know if i could separate the database of the forum and in-game accounts??? if Yes any suggestion how to do it? thank you for answering in advance.
  15. just a silly question regarding to 2015 client support regarding on this thread. https://rathena.org/board/topic/104452-tutorial-how-to-create-ragnarok-offline-2015-client/I'm just wondering it says to copy data and system I'm just wondering how would you be able to copy the data&system? would it be save link as? or copy paste then put it on a notepad?.. hopefully someone could answer this. thank you very much in advance.
  16. just a silly question.. i was just wondering regarding the data & system is that copy paste and save it to a notepad?..
  17. WorldSeed

    warp

    already solved it. thanks for the advice. :3
  18. WorldSeed

    warp

    i tried adding that but the menu is not showing??..
  19. WorldSeed

    warp

    can someone share a script that could teleport a player lets say prontera to (Payon/Prontera/AldeBaran/Geffen) with choices??.. PS. i know you could put warp "payon"location but how to make choices with all 4 of them. thank you
  20. i was just wondering how would i be able to do it one at a time if you are a max level? instead of just crate 6? thank you. mes "I'm sorry but you have to wait"; mes "24 Hours until you can do the Quest again!"; close; } if(qcargo6==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 502,5; getitem 504,10; getitem 505,15; getitem 608,1; getitem 7060,1; set BaseExp,+1046821; set cquest,0; set carfingor,gettimetick(2); set qcargo6,0; close; } if(qcargo5==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 502,5; getitem 504,10; getitem 505,10; getitem 7060,1; set BaseExp,+565471; set cquest,0; set carfingor,gettimetick(2); set qcargo5,0; close; } if(qcargo4==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 502,5; getitem 504,10; getitem 7060,1; set BaseExp,+178601; set cquest,0; set carfingor,gettimetick(2); set qcargo4,0; close; } if(qcargo3==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 502,5; getitem 503,10; getitem 7060,1; set BaseExp,+18293; set cquest,0; set carfingor,gettimetick(2); set qcargo3,0; close; } if(qcargo2==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 502,5; getitem 7060,1; set BaseExp,+1642; set cquest,0; set carfingor,gettimetick(2); set qcargo2,0; close; } if(qcargo1==1) { mes .@npcname$; mes "Congrats!"; getitem 501,20; getitem 7060,1; set BaseExp,+142; set cquest,0; set carfingor,gettimetick(2); set qcargo1,0; close; } if(BaseLevel >= 98) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [6]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [6] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } if(BaseLevel >= 81 && BaseLevel <=97) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [5]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [5] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } if(BaseLevel >= 61 && BaseLevel <=80) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [4]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [4] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } if(BaseLevel >= 41 && BaseLevel <=60) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [3]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [3] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } if(BaseLevel >= 21 && BaseLevel <=40) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [2]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [2] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } if(BaseLevel >= 1 && BaseLevel <=20) { mes .@npcname$; mes "Hello "+strcharinfo(0)+","; mes "do you want to accept the Job?"; next; switch(select("Yes,sure:No,sorry:Cancel")) { case 1: mes .@npcname$; mes "Awesome,find the Deadly Cargo [1]"; mes "and bring it to me,and you'll"; mes "get a reward."; next; mes .@npcname$; mes "The Deadly Cargo [1] is somewhere"; set cquest,1; mes "here in Alberta!"; close; case 2: mes .@npcname$; mes "Okay goodbye!"; close; case 3: close; } } mes .@npcname$; mes "........"; close; } // ========================= End of the first NPC ================================================= alberta,188,173,3 script Deadly Cargo [1] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [1] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo1,1; close; } mes .@npcname$; mes "........"; close; } alberta,232,103,3 script Deadly Cargo [2] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [2] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo2,1; close; } mes .@npcname$; mes "........"; close; } alberta,245,90,3 script Deadly Cargo [3] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [3] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo3,1; close; } mes .@npcname$; mes "........"; close; } alberta,245,67,3 script Deadly Cargo [4] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [4] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo4,1; close; } mes .@npcname$; mes "........"; close; } alberta,245,43,3 script Deadly Cargo [5] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [5] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo5,1; close; } mes .@npcname$; mes "........"; close; } alberta,122,221,3 script Deadly Cargo [6] 1191,{ set .@npcname$,"^FF0000[ Deadly Cargo [6] ]^000000"; if(cquest==1) { mes .@npcname$; mes "Go back to the Port Manager!"; set qcargo6,1; close; } mes .@npcname$; mes "........"; close; } anyone?
  21. i don't think there's an old training ground it's always have been the same except for they added monster and some npc.
  22. Uhh.. where to start you got to edit item,monster, remove some maps, portals you have to change the drop of some monsters. you should check this one because this guy has the monster for episode to you just have to figure out the rest. https://rathena.org/board/topic/104529-official-episode-2-mob-db/hope it helps. P.S. you gotta look on some old files as well such as eathena. if not there try using google and basically look what did they release on that server for example ro-doddler has a few i think its from episode 10.4~11 something.
  23. ALfheim Ragnarok Online.. just a simple logo almost similar to the www.Ragnarok.co.kr but www.alfheimro.com ?? :3
  24. Good evening. I was wondering if someone would be able to make me a Logo for my server (Terrible at designing).
×
×
  • Create New...