Jump to content

Arcenciel

Members
  • Posts

    1315
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Arcenciel

  1. Are you wearing Ahura Mazdah and Angra Manyu when you're making the clone?
  2. Search for Shinryo's Diff patcher, download the client you want to use and in the drop down box select the second one then look for the option.
  3. I hope to see this project finished and released. I've seen far too many projects that had great potential but just failed. Good luck!
  4. You can extract them yourself from the grf. O_o
  5. I'm not sure how that's going to work if your client doesn't support mounts...
  6. On strnpcinfo You need to use OnClock not Onclock
  7. Update your kRO and RE.
  8. I was actually wondering the same thing. How does the setting work since the example isn't very clear....
  9. Try using 3 instead of 0.
  10. You've put into words things I couldn't describe to him. Nice interpretive skills.
  11. What view id are you using for the item? You may need to diff your client to increase the allowed view id.
  12. Welcome back OffBeat! You've been missed. Hopefully, you find time sooner or later to fully come back into the community. <3
  13. Hai! Welcome to rA!

  14. I should seed the torrent too whenever I'm at the Uni. XD
  15. There's a similar topic here: http://rathena.org/board/topic/57832-request-official-rathena-mount-src/ Might wanna check it out.
  16. I learned scripting out of this: Basic_Scripting After that come up with an idea and try to script it yourself. Through that, you'll soon learn what is possible and what isn't via scripting. https://rathena.svn....pt_commands.txt Link above is another great source of information. If you need something just search for it and you'll likely run into something. It's a good read and reference. I still use it up to now and you'll likely use it every time you script something. I don't know anyone who doesn't. Another great new source that didn't exist when I was starting was this: http://rathena.org/b...ng-for-dummies/ It isn't finish yet...Z3R0...but whatever is in there is great. Honestly, I think scripting requires some amount of intelligence since logic is required in almost all the things. Also you're required to visualize how the script is gonna play out when it is actually in game. There's a lot of things to think about such as loopholes, bugs, etc...therefore yeah some kind of intelligence is required. For a beginner, you should try scripting all the simple easy scripts yourself instead of just using someone else's work...then work from there. Also another suggestion, when you run into a problem, look at the map-server it will most likely tell you what is wrong almost all the time and try to fix the problem yourself instead of asking others. I think that helps in learning, you need to be persistent no matter how frustrating it can be sometimes. haha I believe scripting is a continuous learning process since whenever you script something it just adds on to what you do know.
  17. You need to hex your client to ignore missing palette errors.
  18. I was commenting on Obliterate's post.
  19. RMS is a great source to get this kind of info.
  20. Using the SVN/TortoiseSVN to check out, were you not able to go all the way back to 2005?
  21. Arcenciel

    IRC Chat

    We have an IRC Channel. IRC http://rizon.net/chat - Connect to #rathena.
  22. See if you can find the answer here: http://rathena.org/wiki/Thor_Patcher
  23. Hopefully this solved your issue r15512
  24. Nodrop mapflag prevents monsters from dropping items not the other way around.
  25. I don't know much about SQL but your syntax looks wrong. *query_sql "your MySQL query", <array variable> {,<array variable>, ...}; *query_logsql "your MySQL query", <array variable> {,<array variable>, ...}; Puts up to 128 rows of values into the arrays and returns the number of rows. Example: set @nb, query_sql("select name,fame from `char` ORDER BY fame DESC LIMIT 5", @name$, @fame); mes "Hall Of Fame: TOP5"; mes "1."+@name$[0]+"("+@fame[0]+")"; // Will return a person with the biggest fame value. mes "2."+@name$[1]+"("+@fame[1]+")"; mes "3."+@name$[2]+"("+@fame[2]+")"; mes "4."+@name$[3]+"("+@fame[3]+")"; mes "5."+@name$[4]+"("+@fame[4]+")"; Note: In the TXT version it doesn't fill the array and always return -1. Note: Use $ as suffix in the array to receive all data as text. Note: The difference between query_sql and query_logsql is that the latter uses the sql connection to the log database, and should be used when you want to query the server log tables. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt
×
×
  • Create New...