Jump to content

JayPee

Members
  • Posts

    633
  • Joined

  • Last visited

Everything posted by JayPee

  1. Do you have the permission to make change in your php.ini settings?
  2. I think you must add them in the lua, i dont really remember the exact filename but I think that is npcidentity.lua.
  3. So the requirements for the Monster Hunt are: The party must have 10 members if they failed to follow the required members they cant join. Disconnected player can join again once they login again and also the party is currently Monster Hunting. AFK players will be warped out Party can join again every 5 minutes am I right?
  4. for the korean issue i think the problem is your scientinfo.xml/clientinfo.xml in your data folder, there is a guide for this: http://rathena.org/wiki/Clientinfo.xml can you also check the login, map, and char server they might reporting some errors
  5. Does anyone know the values of 3rd jobs in Hex that looks like this Link: http://rathena.org/wiki/Custom_Items I try the values thats in cons.txt but it doesnt work... Thanks in advance.
  6. Here, I dont know why it became &amp;lt; function HandOutPrizes { while(.@i < getarg(1)) { // Edit starts here query_sql("select account_id,level from login where account_id = "+getd(getarg(0) + "[" + .@i + "]")+"order by level limit 1",.acc_id,.acc_lvl); if(.acc_lvl == 1) set .qty,2; else set .qty,0; getitem getarg(2), getarg(3)+.qty, getd(getarg(0) + "[" + .@i + "]"); // Edit ends here set .@i, .@i + 1; } return; } try to use what Bryan posted that is more better
  7. please post screenshots of your map, char and login server.
  8. function HandOutPrizes { //<teamarray>, <numplayers>, <itemid>, <qty> while(.@i < getarg(1)) { // Edit starts here query_sql("select account_id,level from login where account_id = "+getd(getarg(0) + "[" + .@i + "]")+"order by level limit 1",.acc_id,.acc_lvl); if(.acc_lvl == 1) set .qty,2; else set .qty,0; getitem getarg(2), getarg(3)+.qty, getd(getarg(0) + "[" + .@i + "]"); // Edit ends here set .@i, .@i + 1; } return; } Problem: space between where account_id = "+getd(getarg(0) + "[" + .@i + "]")+"order Try this: function HandOutPrizes { //<teamarray>, <numplayers>, <itemid>, <qty> while(.@i < getarg(1)) { // Edit starts here query_sql("select account_id,level from login where account_id = '"+getd(getarg(0) + "[" + .@i + "]")+"' order by level limit 1",.acc_id,.acc_lvl); if(getarraysize(.acc_lvl) == 1) set .qty,2; else set .qty,0; getitem getarg(2), getarg(3)+.qty, getd(getarg(0) + "[" + .@i + "]"); // Edit ends here set .@i, .@i + 1; } return; } I add also getarraysize in the if, since the query_sql returns array variables Hope it work
  9. Actually, the column name in SQL must match what is coded in the rAthena source, or else when it does a SQL query, the server won't be able to find what it's looking for. If your rAthena version is before 15572, the column should still be named `account`.`level` For version 15572 and after, the column should be named `account`.`group_id` In my test server I was using `level` which is the old structure of login table and when I try to use the new SVN version i just changed the column from `level` to `group_id` and it works fine.
  10. you can just rename the columns back to level but i suggest if your just going to start a new server use the latest one
  11. Question, is group.conf being reloaded too when I use @reloadatcommand?
  12. Well i guess you use should use the eathena exp.txt since the you get the result you wanted to.
  13. +1 for this. Rackspace is a very reliable hosting company.
  14. Snake and Ladders Game Board: Thank you very very much for the person who wants to make a snake and ladder board map.
  15. pakilinaw lang po ang iyong problem.... kindly provide more information about sa problema mo
  16. searching for user feedbacks on google will be great help for you.
  17. Thanks I think that solves my problem but its weird that i dont have that since I currently using an updated revision.
  18. When I try to compile the server i receive this error message in VS2008. the error occurs at ACMD_FUNC(go). I dont know if iam looking at the right file in the configuration file. I try to check conf/battle/gm.conf and see if there is any_warp_GM_min_level field there but i found nothing. This is my gm.conf //-------------------------------------------------------------- // rAthena Battle Configuration File // Originally Translated by Peter Kieser <[email protected]> // Made in to plainer English by Ancyker //-------------------------------------------------------------- // Note 1: Value is a config switch (on/off, yes/no or 1/0) // Note 2: Value is in percents (100 means 100%) //-------------------------------------------------------------- // The maximum quantity of monsters that can be summoned per GM command (0 denotes an unlimited quantity) atcommand_spawn_quantity_limit: 100 // Maximum number of slave-clones that can be have by using the @slaveclone at command. (0 denotes unlimited quantity) atcommand_slave_clone_limit: 25 // If 'no', commands require exact player name. If 'yes', entering a partial // name will work, as long as there's only one match from all players in the // current map server. partial_name_scan: yes // (@) @allstats/@str/@agi/@vit/@int/@dex/@luk // allow gms to bypass the maximum stat parameter? ( if yes gm stats can go up to 32k ) default: no atcommand_max_stat_bypass: no // Ban people that try trade dupe. // Duration of the ban, in minutes (default: 5). To disable the ban, set 0. ban_hack_trade: 5
  19. in your sql-files folder find logs.sql tapos import mo sya using phpmyadmin or mysql query browser tapos try to check your inter_athena.conf in conf folder make sure tama lahat ng database configuration mo
  20. it depends on the features you will put. But commonly the files your just going to touch is the addson - if your going to make or put a plugin such as Vote For Points and CMS config - if you want to add more configuration lang - if you want to support other language too modules - contains pure php codes themes - coded design goes here, this is where you use HTML, CSS, Javascript and ofcourse PHP also
×
×
  • Create New...