Jump to content

Dastgir

Script Developers
  • Content Count

    3805
  • Joined

  • Last visited

  • Days Won

    250

Everything posted by Dastgir

  1. Its not even been 12 hours since your last post..you should consider waiting for reply for atleast 1 full day. I guess those texts are from https://github.com/ROClientSide/Translation/blob/master/Data/luafiles514/lua%20files/navigation/navi_npc_krpri.lub while those bracket texts, (plenty and normal) might be from msgstringtable.txt
  2. how can i add new user in phpmyadmin today if theres no privilege If there's no privilege, you cannot add new user. how to allowed ip because im having error like the picture below The Image you attached shows access denied, that means you have put wrong password. Allowing IP Query: GRANT ALL ON db.* TO user@'IP' IDENTIFIED BY 'password'; Is the phpmyadmin that i need to configure is on the webhost or in the vps? Its in the WebHost(whereas you can install it on VPS too accompanied with some web-server) if in the vps how to access it? should i install phpmyadmin even though i already install mysql essential etc and tools. PhpMyAdmin is GUI for MySQL. you can still use mysql from "mysql -u user -pPASSWORD" from putty(if linux vps) please can i have anyone to talk to about this im stuck for 3 days You can ask @Community, and we will be glad to help you.
  3. Location: lua files/entryqueue/entryqueuelist.lub Get Translated one from https://github.com/ROClientSide/Translation/blob/master/Data/luafiles514/lua%20files/entryqueue/entryqueuelist.lub
  4. Hello Neo, There's some bug in NEMO Patcher(maybe caused in last few updates), When I use the NEMO Patcher Downloaded on March to diff client(tested on 2014-02-05 and 2013-08-07), it works fine but, When I use the latest NEMO Patcher to diff the client, the diff is successful, but Client cannot be open, (looks like it initialize the client, then client is closing automatically).Client doesn't show any window, and it just closes. I used the same Patches for testing on both Patcher(Old NEMO and New NEMO): http://upaste.me/a4dc1305681b64cef
  5. Awesome, its good for those who dont know how to install msvc or dont have msvc, and still can compile on windows easily with your tool. hope you release it.
  6. Dastgir

    R>MVP Cashpoint

    http://herc.ws/wiki/Adding_Script : Wiki shows it how to add scripts
  7. maybe from "its missing" you mean its not opening. Possibly, you don't have clientinfo.xml in your GRF(grf and not data folder, since data folder isn't checked on those clients I think)
  8. Hi Jabote again thank you! But I still have one problem. How can I check if the the KILLER OF THE MOBS CURRENT MAP is equal to PARTY MEMEBERS LOCATION? FOR EXAMPLE IF THE KILLER OF THE MOB IS IN ABBEY02 and other PARTY MEMBERS IS NOT EQUAL TO KILLER OF THE MOBS MAP. THEY DONT GET THE ITEM. MEANING THEY NEED TO BE IN THE SAME MAP OF THE KILLERID TO GET THE ITEM. Isn't it checked already? if ( .@map1$ == .@map2$ && distance(.@x1,.@y1,.@x2,.@y2) <= 30 ) // same map and the distance is within 30 cell range
  9. Not Possible I guess. (maybe roBrowser have capability for adding new .str)
  10. Maybe the height of terrain is low, and its edge of map, so maybe edit via browedit and add some wall or something. (Or wait for some mapper to answer)
  11. I think it is on msgstringtable.txt
  12. Do you update your hercules manually? That may be the cause, since your db files seems new and source and conf might be old I suggest to do an update, so error will be gone.
  13. You should recompile the server too, and check if the server is compiled without any errors.
  14. 골드PC = Gold PC, Searched in kRO itemInfo, found 204 hits. most of items having this as bonus 골드PC방에서 장착 시 ATK + 10, MATK + 10. Translation: When equipped on GoldPC Room,Atk+10 , Matk+10 This is long ago implemented maybe. just mileage would have been added new. as The VIP (extra EXP) on msgstringtable have this from months: %d%% (PCroom %d%% + TPLUS %d%% + Premium %d%% + %s Server %d%%)#
  15. So is PCRoom and GoldPCRoom are different? I saw some items before , giving additional effects on PCRoom(As Said by descriptions)
  16. Isn't those duplicates of the towns? just replace the old town and run mapcache again. or add old towns with new_name and edit resnametable.txt and run mapcache again.
  17. resnametable.txt format is pretty easy to understand, which you can understand: example: duplicatename.gnd#originalmap.gnd#duplicatename.gat#originalmap.gat#duplicatename.rsw#originalmap.rsw#유저인터페이스mapduplicatename.bmp#유저인터페이스maporiginalmap.bmp# If I am not wrong, there's 12 characters map-length limitation. you have to update server side files too. 1) conf/maps.conf, enter this at the end map: duplicatename 2) db/map_index.txt, enter this at the end duplicatename Then either use WeeMapCache, or Hercules MapCache to generate mapcache For Using hercules mapcache, you have to update the file conf/grf-files.txt with the data folder location. For Using WeeMapCache: 1) Download WeeMapCache 2) Open WeeMapCache 3) Open the Mapcache 4) and Add the Map File there(it have option at the top) 5) Save the Mapcache. That's it.
  18. old and newer Make it slotted and color changes all slots have different colours. If you want item to have definite colour, that might require client expert to hex the client that way.
  19. Yes, Hardware one is the preferred one, because it does most job before any Attack reaching the server. and its a cheaper than RO host(for those who think companies giving RO-VPS are cheap). Or Buy a DS and share it amongst other server owners
  20. Script won't get loaded because of high amounts of case-insensitive words,(so I guess there's ton's of warnings in the map-server), and what you exactly mean by "Skills across server does not work"?
  21. Some Recoding for better view, Instead of this: # Base = renewalif [[ "$base" == "re" ]]; then echo "" echo "Lets get started.." echo "" echo "Inserting main.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/main.sql echo "Done inserting main.sql..." echo "" echo "Inserting item_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db.sql echo "Done inserting item_db.sql." echo "" echo "Inserting item_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db2.sql echo "Done inserting item_db2.sql." echo "" echo "Inserting mob_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db.sql echo "Done inserting mob_db.sql." echo "" echo "Inserting mob_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db2.sql echo "Done inserting mob_db2.sql." echo "" echo "Inserting mob_skill_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db.sql echo "Done inserting mob_skill_db.sql." echo "" echo "Inserting mob_skill_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db2.sql echo "Done inserting mob_skill_db2.sql." echo "" echo "Inserting item_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db_re.sql echo "Done inserting item_db_re.sql." echo "" #echo "Inserting item_db2_re.sql..." #mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db2_re.sql #echo "Done inserting item_db2_re.sql." #echo "" echo "Inserting mob_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db_re.sql echo "Done inserting mob_db_re.sql." echo "" echo "Inserting mob_skill_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db_re.sql echo "Done inserting mob_skill_db_re.sql..." echo "" echo "" echo "Finished inserting all renewal database sql files."fi # Base = 'pre-re'if [[ "$base" == "pre-re" ]]; then echo "" echo "Let's get started..." echo "" echo "Inserting main.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/main.sql echo "Done inserting main.sql.." echo "" echo "Inserting item_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db.sql echo "Done inserting item_db.sql." echo "" echo "Inserting item_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db2.sql echo "Done inserting item_db2.sql." echo "" echo "Inserting mob_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db.sql echo "Done inserting mob_db.sql." echo "" echo "Inserting mob_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db2.sql echo "Done inserting mob_db2.sql." echo "" echo "Inserting mob_skill_db.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db.sql echo "Done inserting mob_skill_db.sql." echo "" echo "Inserting mob_skill_db2.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db2.sql echo "Done inserting mob_skill_db2.sql." echo "" echo "" echo "Finished inserting all pre-renewal database sql files." # User didn't enter 'pre-re' or 're'elif [[ "$base" != "pre-re" ]] && [[ "$base" != "re" ]]; then echo "ERROR: You didn't enter 're' or 'pre-re'" exitfi You can Use this: # Base = renewalif [[ "$base" != "pre-re" ]] && [[ "$base" != "re" ]]; then echo "ERROR: You didn't enter 're' or 'pre-re'" exitfi#Common Databaseecho ""echo "Let's get started..."echo ""echo "Inserting main.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/main.sqlecho "Done inserting main.sql.."echo ""echo "Inserting item_db.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db.sqlecho "Done inserting item_db.sql."echo ""echo "Inserting item_db2.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db2.sqlecho "Done inserting item_db2.sql."echo ""echo "Inserting mob_db.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db.sqlecho "Done inserting mob_db.sql."echo ""echo "Inserting mob_db2.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db2.sqlecho "Done inserting mob_db2.sql."echo ""echo "Inserting mob_skill_db.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db.sqlecho "Done inserting mob_skill_db.sql."echo ""echo "Inserting mob_skill_db2.sql..."mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db2.sqlecho "Done inserting mob_skill_db2.sql."echo ""if [[ "$base" == "pre-re" ]]; then #Pre-Renewal echo "" echo "Finished inserting all pre-renewal database sql files."elif [[ "$base" == "re" ]]; then #Renewal echo "Inserting item_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/item_db_re.sql echo "Done inserting item_db_re.sql." echo "" echo "Inserting mob_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_db_re.sql echo "Done inserting mob_db_re.sql." echo "" echo "Inserting mob_skill_db_re.sql..." mysql -u "$username" -h"$hostname" -p"$password" "$database" < sql-files/mob_skill_db_re.sql echo "Done inserting mob_skill_db_re.sql..." echo "" echo "" echo "Finished inserting all renewal database sql files."fi
  22. Its only 1st guild claim.(found any bugs ?)
  23. Its more of Web Related, since thor patcher only makes the notice box and directs them to website, and website does the trick of slider. (correct if I am wrong. :? )
  24. Better if you use non-RO VPS, and try to setup yourself, so you can get rid of those high prices of RO Hostings.
  25. Why not use homunculous?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.