Jump to content

Xantara

Members
  • Posts

    243
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Xantara

  1. Currently, the reduced drop rate won't show in @mi and @rates; it will show as normal. However, an edit to @mi (or a new atcommand) is possible for it to show the reduce drop rate for that map.
  2. The item/donation shop is the 'purchase' module (ie. www.domain.com/?module=purchase) Hopefully I understood what you are having difficulties with. If so, to add in items to the shop, you have to first log in as an admin. Then go to the item database (ie. www.domain.com/?module=item), search and click on the item you want to add. There should be sub-menu named "Add to Item Shop", click it and fill in the form. Submit and it should be added to the shop.
  3. Set 'DebugMode' to true in config/applications.php and $showExceptions to true in config/errors.php for a more detailed error report page.
  4. This error seems to be only happening with PhpMyAdmin. You can try importing them through a mySQL command prompt or using another software.
  5. Xantara

    doubt command

    Hi, I believe you want an atcommand to unequip all items from all the players in the same map that is not a GM. If this is correct, then you got the base part correct. You created a variable, iter, that holds the data of all the players in the server. Now you just have to iterate through that and check if the current data you are iterating through is (1) on the same map and (2) not a GM. Here is a solution I quickly made using your code: atcmd_unequipmap_v1.0.patch Hopefully that is what you wanted ;; Regards, ~ Xantara
  6. If you are using one of the latest rA revisions, the file Earthlingz is mentioning is now found in trunk/conf/groups.conf. The default file would have the admin/gm group at the bottom. In this group, the setting 'all_skill' is found; try changing this to false.
  7. Hi, rAthena changed some parts of how it logs items so I changed some of the functions to make it work with it. Therefore, the patch will only work with rA SVNs and not with any other (eA, 3ceAm, etc). Regards, - Xantara
  8. Well, I forgot about the atcommand suggestion xD; Oppss.. Better late than never right? Anyways, I've updated this source modification to a package that includes both getitem_map script command and itemmap/1/2 atcommand. There were changes to the rAthena SVN that affected the previous versions so this update also provides a fix to make it work on the latest revision (r15625). The documentation might be a bit more confusing now so let me know if there is anything uncertain.
  9. To apply the patch, you can use TortoiseSVN or do it manually. Here is a Wiki page on it: Diff
  10. For CeresCP users: - Patch file: ceresCP_rA_update_r15583.patch * You can use TortoiseSVN to apply the patch or do it manually. Here is a Wiki page on it: Diff * The base files I got were from the SVN (not sure if this is "CeresCP Plus" or not). I think it should work either or though... * Again,this is obviously unofficial so use at your own risk~ Updated: - Thanks to BrianL for adding this patch to CeresCP (rev117)
  11. @sizenine, I am unable to reproduce that error (or any error). =( Do you perhaps have any other custom edit(s)? @Pancake, as Judas mentioned, you can use TortoiseSVN to apply the patch. You can also do it manually. Here is a Wiki page on it: Diff @all, I've updated the patch file with an edit I forgot to add for 'modules/ranking/zeny.php' file.
  12. Sometimes the script error message is one line off... In the line below, it is missing the closing quotation marks: mes "Please select the service you wish to use; Therefore, it should be: mes "Please select the service you wish to use"; PS. Please use codebox for script snippets longer than 10 lines.
  13. Hi Hirasu, Thanks for your interest in my modification =) Here is a Wiki link regarding how to apply the patch file (either using TortoiseSVN or Manually): http://rathena.org/wiki/Diff Regards, ~ Xantara
  14. For FluxCP users, here is a patch file that changes all needed instances of the 'level' field to 'group_id' : - fluxCP_rA_update_r15583.patch This is obviously unofficial so use at your own risk. Anyways, let me know if I missed any or if there are still errors.
  15. 1) You would have to edit the item database to something similar to the following: (ie. check the level of the player, and if it satisfies the condition, apply the item bonus.) { if(BaseLevel <= xx) { bonus bSpeedRate,25; } },{}, {} 2) You can give the starter set though an NPC using the rentitem script command so that the equipment will disappear after a given time.
  16. Xantara

    Item 1577

    Hmm.. Yea, I was using Chrome (16.0) at that time. I check Firefox (8.0.1+) after I posted and it works fine there too. ><;; Heh, don't know what happened. Well, at least the rest are fine xD
  17. Xantara

    Item 1577

    Hmm.. I don't see that o_o; rathena/trunk/db/re/item_db.txt 1577,Krieger_Book2,Glorious Apocalypse,4,20,,0,90,,1,0,0x00410100,7,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bIgnoreDefRate,RC_DemiHuman,25; bonus bUnbreakableWeapon,0; if(getrefine() > 5) bonus2 bIgnoreDefRate,RC_DemiHuman,5; if(getrefine() > 8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; } },{},{}
  18. The function posix_getuid() does not work on Windows. This inconsistency has already been reported on FluxCP's issue tracker. Report link: http://code.google.c...es/detail?id=52
  19. Hmm.. I'm not 100% sure on the following but I think Thor Patcher doesn't really have a limit on the amount of GRFs you can use. You do have to specify a "base" GRF in the configurations but in the ThorMaker.exe, I believe you can specify any GRF you want to update by its name. I'm not really familiar with the others so I can't comment on those xP
  20. Which FluxCP revision are you using? Have you checked if there are any (SQL) error output files? (/fluxcp/data/logs/errors/exceptions/ or /fluxcp/data/logs/mysql/errors/) You could also try enabling both the DebugMode (/fluxcp/config/applications.php) and $showExceptions (/fluxcp/config/error.php) then try clicking that link given from the e-mail.
  21. Wiki: SVN_Checkout This will download all the files for you in that SVN tab. It is also a useful tool to update those files when fixes or new content is added to rAthena.
  22. A multiple alootid has been added to the rAthena SVN by Gepard, r15489 Enjoy =)
  23. That is working as intended. See bug report bugreport:4769. Basically, There are "fixes" posted in that report if you wanted to change its behavior. Hopefully I understood your question =)
  24. r15486's latest renewal mob database for SQL: mob_db_re.sql (table renamed to work with mob_db) I was planning to commit it as a mob_db_re table file but I don't think we have that database yet. So, I decided to post it here. (ie. this is an unofficial version)
  25. Did you edit this config setting to 'no'? rathena/trunk/conf/login_athena.conf //If new_account is enabled, minimum length to userid and passwords should be 4? //Must be 'Yes' unless your client uses both 'Disable 4 LetterUserID/Password' Diffs new_acc_length_limit: yes
×
×
  • Create New...