Jump to content

Dastgir

Script Developers
  • Content Count

    3803
  • Joined

  • Last visited

  • Days Won

    249

Everything posted by Dastgir

  1. For OnPCLoadMapEvent to trigger, the map should have loadevent mapflag too
  2. Also, for each episode, there's probably skill modifications too. Also, for each episode, the item script might differ too
  3. What will warp to GM support? The character? Wouldn't it be abusable then?
  4. Bypass novending on specific line? Just remove that line from the script?
  5. That's actually called repacking, it will reduce the grf size, because while patching, some files might get reduced size(and remaining memory location filled by NUL or allocate bigger memory location) So doing compact save(repack), it properly arranges the file and deletes off unused locations. In short, there isn't any side effects
  6. If you could say where you are stuck, then there are many people to find best solution for you. If you just need guide, we have already provided guide, which would have been sufficient. Hex: You just need Nemo: https://github.com/MStr3am/NEMO?files=1 Grf: You need kRO and translation folder(put data folder inside grf) Translation folder: https://github.com/ROClientSide/Translation?files=1 Search GRF Editor in download section and you would get link(so you can put data folder from translation in the grf) Translation folder contains clientinfo.xml, just edit it and change the ip.
  7. 2 cases: 1) if you are having fluxcp and SQL on same vps, try changing ip from localhost to 127.0.0.1 or vice versa and one should work 2) if webhost fluxcp and SQL are on different vps, The error is showing connection refused, that means it is not even accepting the connection to check user/pass, so change my.cnf to [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 bind-address = 0.0.0.0 [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid And restart mysql Edit: I am not used to phpmyadmin, so I cannot tell if that way is proper. However, you can add grant by following way via ssh(putty): Login to vps, then type this to login to mysql: mysql -u root -p It will ask for password , enter it Then type these 2 commands GRANT ALL PRIVILEGES ON *.* TO 'root'@'YOUR_WEB_URL_OR_IP' IDENTIFIED BY 'PASSWORD_HERE';FLUSH PRIVILEGES; Change YOUR_WEB_URL_OR_IP to your website domain or ip, or replace it by % if you don't want to restrict login by ip/domain
  8. Pre-re: https://github.com/HerculesWS/Hercules/blob/master/db/pre-re/job_db.conf Re: https://github.com/HerculesWS/Hercules/blob/master/db/re/job_db.conf Edit the "Weight" field for specified job, default is 2000
  9. Seems like MySQL is not accepting remote connection If it's Linux vps, open /etc/mysql/my.cnf or /etc/my.cnf (check which one exist and open it, some OS have it under etc folder, some have under mysql folder as mentioned above) Find bind-address = 127.0.0.1 Comment it (by adding # at beginning ) #bind-address = 127.0.0.1 And restart the MySQL
  10. I guess Hercules is having old prontera mapcache only, you just need to download old prontera map files in your client. Also conf/char-server.conf, you can configure start point (only renewal start point has changed, pre re start point is same)
  11. It have many steps because it's in detail, not like "login into mysql and import", that guide expand just that one line into 5-10 steps, telling you how to login to mysql,how to import, etc.... Also, precompiled servers are eA times thing, it have disadvantage, as it won't make your server up to date, rather you would be having months old server...
  12. Maybe you will get most recent client support too xD
  13. 1) http://herc.ws/board/forum/2-general-discussion/ If it's any script/client guide, maybe client/server release Forum can be used. 2) yes, you can make guide even if there's one existing.(your's might be easier to understand, so why not )
  14. Grab this folder: https://github.com/ROClientSide/Translation/tree/master/data/texture/%C3%80%C2%AF%C3%80%C3%BA%C3%80%C3%8E%C3%85%C3%8D%C3%86%C3%A4%C3%80%C3%8C%C2%BD%C2%BA
  15. http://herc.ws/board/topic/9782-goodbye-well-miss-you/
  16. Nah , Hercules won't die, it's just coincidence that all of us(including me) got some hectic schedule during this period of time.While I won't spoil anything, but you can expect some nice updates by mid of next month I wanted to see H.E.R.C the hype for so long time, is it dead? Unfortunately, yes, Ind left Hercules along with all his projects...
  17. Nah , Hercules won't die, it's just coincidence that all of us(including me) got some hectic schedule during this period of time.While I won't spoil anything, but you can expect some nice updates by mid of next month
  18. That point was made w.r.t this page: https://www.paymentwall.com/en/faq/payment-verification/196 It probably seems it is talking about the one who is paying Edit: They list this as well: There is a $100 minimum payout threshold. Once the $100 threshold is met, we will automatically send you the payout as long as all compliance documents are uploaded and approved. We send out payouts as we collect your revenues from our payment partners. It would depend on the payment method utilized by the users and release time of our payment partners which usually vary between 30 to 60 days. To view your payout schedule, please click here The payout can also be put on hold for a specific amount of time if we see that you have stopped processing payments. This is to cover any possible chargebacks the users may file. Once the prescriptive period is over, we will pay you your remaining balance minus any refunds or chargebacks Reference: https://www.paymentwall.com/en/faq/payouts/194 So 30-60 days is hell lot, and 100$ minimum for payout..
  19. Be sure they are in grf, I guess data folder for luafiles514 doesn't work, also thet should be in .lub and not .lua
  20. Unknown item is usually itemInfo problem Also make sure itemInfo.lub is in RO/System/ folder and not in RO/data/System/ neither in GRF,
  21. I stopped at that moment =( I can't verify with their requirements Paymentwall is kinda bad, kinda good,Good since it have wide variety of options to pay through. Bad , because sometimes player needs to confirm themself(which I guess half of them won't do)
  22. We cant fix the error without knowing how you really set solo/party room. Since you really cannot use instanced npc name to identify it, maybe add some unique variables to declare if its solo/party room?
  23. I already know this feature, it probably have more fields according to RndOptions.. hoping next month to be awesome month for Hercules xD Edit: Also, this only works on chatbox, it won't work on npc dialog, for npc dialog, we just have <ITEM> tag
  24. 1) mysql might not be running 2) mysql isn't configured to accept remote ip
×
×
  • Create New...

Important Information

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