Jump to content

Gidz Cross

Members
  • Posts

    686
  • Joined

  • Days Won

    9

Everything posted by Gidz Cross

  1. That's the main problem. How to edit the skill from server side.
  2. No didnt try that and i dont want to try that. I want renewal features while im into pre re. Its the only skill doesnt function properly. There must be a way. Like full throttle for example. Its for renewal but i have it on pre re.
  3. Well if there is a casting time i can see the sprite. Same goes to warlock skill called Recognize spell. But when im onto instacast i dont see the effects. Can you help me to deal with this?
  4. Renewal with Pre Renewal Formulas. I mean i have 3rd job and 3rd job skills. Both of my PRE RE and RE skill_db are the same with 5008 skill. So it means that this skill is not functioning well. Hmmm.
  5. Solved it already. Im using 2013 client and its on skillinfoz folder. Thanks anyways!
  6. Why not just download the latest and the updated svn? I dont have these errors. I am using up to date svn. You can get it from here https://github.com/rathena/rathena
  7. Well. The double casting of sorcerer give you 80% chance at lvl 5. How to make that 100%?
  8. If i use the skill called Elemental Shield, a message to mapserver will pop out. It says skill_castend_nodamage_id: Unknown Skill:5008 How to deal with this?
  9. Hello. How to edit monster drops such as Valkyrie Rangris and Satan Morroc? My purpose is to remove some Diabolus Part and some valkyrie parts. Hmmmmmmmm. Which folder should i go into server side?
  10. Yeah it works. Once again thank you.
  11. Thank you so much. I will look into that.
  12. ================================================================================================= Ugh. No one replies to this so lemme tell you the solution i found. Very simple: Use Nemo Patcher 2.0 by neo.
  13. In NPC folder. Where should i go to remove those poring npc's on this map?
  14. http://www.emistry.net/board/index.php?threads/server-specific-item-count.45/ How can i use it? It says I dont understand it. I already put it to my npc folder. And add the txt file in the scripts_custom.conf. Now what will i do? BTW credits goes to emistry for this.
  15. Hi to everyone. It's been 1 month and 8 days since we started making our own server and i should say that we've achieved a lot. Me and my friends decided to host it up. But we don't have any idea on how it will work online. I know some several website like: https://www.trinitynetworks.net/rohostingus.php and https://www.phytonhost.biz/cart.php?gid=4 What will happen if we decided to rent their services. How can the players will be able to register on our server? (In offline we have the main.sql and the logs.sql) how can i put it online? So basically everything is now ready. All we have to do is make it online. Is there a guide to to make it online? I know that we must buy a domain and another domain for forums. Honestly we really dont have the idea. I dont know about control panel i dont know database. Geez. I really wish that we can put our server online. We tend to invest on this so the hamachi and no-ip is not an option. Please reply thanks. Sorry for my bad english.
  16. It works and thank you for that. But what i need is something different. I'll explain how the srcript we got works. I have these custom items +7 ~ 10 Weapon Refine Deed. So the players need at least +6 Weapon to use my NPC. For example they want to make their +6 to +7 in 100% success rate. They need to have +7 Weapon Refine Deed. And the NPC will take that and refine his/her Weapon to +7. And they decided to make it +8. So they need to have +8 Weapon Refine Deed. Something like that. So instead of one item required, they need to have +7, +8, +9 and +10 Weapon Refine Deed. Donation Item purposes. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Thanks! I already fixed it.
  17. you can disable mobs and npcs from novice.txt pre-renewal ------ trunk\npc\pre-re\jobs\novice\novice.txt renewal ----------- trunk\npc\re\jobs\novice\novice.txt Woah! I'll look into these! ================== It worked thanks!
  18. Hi. We got a NPC that uses Refine Deeds. And i edited it to make it clean. But something is not right so i decided to post it here. Here's my Weapon Refiner. //===== eAthena Script ======================================================= //= Donation Refine ( TXT & SQL ) //===== By: ================================================================== //= Credit goes to whoever made this xD //===== Current Version: ===================================================== //= 1.10a //===== Compatible With: ===================================================== //= Any eAthena Version //===== Description: ========================================================= //= Donation Refine Script //============================================================================ prontera,177,134,5 script Weapon Refine Deed 605,{ mes "[Sure Refiner]"; mes "Good day "+strcharinfo(0); mes "Do you want to refine your Weapon?"; next; mes " I need the following:"; mes " ^3355FF +7 Weapon Refine Deed^000000"; mes " ^3355FF +8 Weapon Refine Deed^000000"; mes " ^3355FF +9 Weapon Refine Deed^000000"; mes " ^3355FF +10 Weapon Refine Deed^000000"; mes "For me to refine your item"; next; mes "[Sure Refiner]"; mes "Now, what do you want to refine?"; function Refine; set @itemquantity, 1; // item quantity menu "Refine equipment",REFIN,"Nothing at all",QUIT; REFIN: set @handr$, getequipname(4); menu "[Right Hand] "+@handr$,HANDR, "Cancel",QUIT; HANDR: set @slot, 4; Refine; QUIT: next; mes "[Sure Refiner]"; mes "Okay, see you."; close; LATER: next; mes "[Sure Refiner]"; mes "Thanks, have a nice day."; close; CANCEL: next; mes "[Sure Refiner]"; mes "Okay, come back another time."; close; MAX: next; mes "[Sure Refiner]"; mes "Sorry, but I can't refine this anymore."; close; NOWAY: next; mes "[Sure Refiner]"; mes "Oh my, I can't refine this item!!!"; close; // ---------------Refine Equipment Refine: if (countitem(31992) > 0 && getequiprefinerycnt(@slot) < 7 && getequiprefinerycnt(@slot) > 5 ){ menu "Do it!",-,"Cancel",CANCEL; delitem 31992, @itemquantity; successrefitem(@slot); goto LATER; close; } if (countitem(31993) > 0 && getequiprefinerycnt(@slot) < 8 && getequiprefinerycnt(@slot) > 6 ){ menu "Do it!",-,"Cancel",CANCEL; delitem 31993, @itemquantity; successrefitem(@slot); goto LATER; close; } if (countitem(31994) > 0 && getequiprefinerycnt(@slot) < 9 && getequiprefinerycnt(@slot) > 7 ){ menu "Do it!",-,"Cancel",CANCEL; delitem 31994, @itemquantity; successrefitem(@slot); goto LATER; close; } if (countitem(31995) > 0 && getequiprefinerycnt(@slot) < 10 && getequiprefinerycnt(@slot) > 8 ){ menu "Do it!",-,"Cancel",CANCEL; delitem 31995, @itemquantity; successrefitem(@slot); goto LATER; close; } else{ mes "SORRY~~"; next; mes "You don't have the right requirements for my service"; next; mes "log on to HELLRO website to know more about me"; next; mes "TNX~~"; mes "BYE BYE!!"; close; } } It works alright. But i think its dirty. There are unused codes like MAX: next; mes "[Sure Refiner]"; mes "Sorry, but I can't refine this anymore."; close; It should popup when you have +10 already. Can you enhance our script? Thanks!
  19. I'll have a look. Thanks! I have this error. But it works. Is there other way that i can manually remove those NPC's?
  20. Hello. I was able to create @go mall command to warp into turbo_room by following http://rathena.org/wiki/@go Now, my problem is there are NPC's on that area. How can i clean that map? The purpose of this is to make custom NPC that sells custom items to normal players. Thanks!
  21. I will try it again. Thanks as always! ==================================================================================================== It worked thanks! Now my only problem is to change that map into no mobs + can summon Dead Branch. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Can use DB's now. Anyways i cant seem to locate this. Hmmmmmm.
  22. I will try that now. Im seeing like this after i change the menu. [-1] ============================================= How can i able to use Dead/Bloody Branch to a map?
×
×
  • Create New...