Jump to content

Mhalicot

Community Contributors
  • Content Count

    1971
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Mhalicot

  1. is there any error in console?
  2. my bad.. I figure it out that it is because of the custom pallets.. if you have custom pallets.. separate it in yourData.grf and put it at the bottom of your Data.ini this will solve your problem..
  3. Actually there is something in yourData.grf that overwriting high novice sprite.. all you need to do is delete that sprite and let your client read the H-novice sprite in data/rdata folder.
  4. Mhalicot

    WOE SCRIPT

    Login your game and configure it .. as simple as that.....
  5. you are using/editing inter-athena/char-athena.. I think you must use hercules server files to run it properly? see on your screenshot, Hecules cmd is using char-server/map-server/login-server to run.
  6. Mhalicot

    WOE SCRIPT

    there's a GM setup that you can set date on game.. you don't need to edit the script..
  7. if you have available script you can add it manually.. but if you don't want to mess up you can create another
  8. In what step you're confused?
  9. okay, try this - script spwnmob -1,{ OnDeath: monster "prontera",0,0,"High Or",1213,1; end;OnInit: addmonsterdrop(1213, 607, 10000); monster "prontera",0,0,"High Orc",1213,210,"spwnmob::OnDeath";end;} Note: if you are using renewal please read this http://irowiki.org/wiki/Drop_System#Level_Factor if you want to disable this feature.. go to src/config/renewal.h find this line /// leave this line to enable renewal item drop rate algorithms/// while enabled a special modified based on the difference between the player and monster level is applied/// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table#define RENEWAL_DROP then replace with, to disable //define RENEWAL_DROP
  10. no just add it to your script.. OnInit: addmonsterdrop(1213, 607, 10000); end;
  11. you can use this script addmonsterdrop(<mob id or name>, <item id>, <rate>) Example: // Add Yggdrasil Berry (607) to the High Orc's (1213) drops, with 100% (10000) rate addmonsterdrop(1213, 607, 10000); for more information read your doc/script_commands.txt
  12. Mhalicot

    Bind commands

    is it same as itembind?
  13. modify npc/mobs.txt or npc/re/mobs.txt or npc/pre-re/mobs.txt depending on map. and for monsterdrop. modify db/re/mob_db.txt or db/pre-re/mob_db.txt depending on what server type you are running
  14. okay use this.. Pretty sure its working @edit Patskie is right.. if you want to use multiple maps, use setarray, or else use set if its single. //===== Hercules Script ======================================//= PvP NPCs//===== By: ==================================================//= kobra_k88; L0ne_W0lf, Elias (og2)//===== Current Version: =====================================//= 2.3//===== Description: =========================================//= PvP NPCs that are found in the Inns in major cities.//= Includes Yoyo Mode, Nightmare Mode, and Event Mode.//===== Additional Comments: ================================= //= 2.0 Narrators/GateKeepers,etc. Translated from the Official 2011 [Elias]//= 2.1 Changed PVP Narrator and GateKeeper to Floating NPC [Elias]//= 2.2 Some cleaning. [Euphy]//= 2.3 Fixed grammatical errors. [Joseph]//============================================================//Fight square Reception Staff (Locations below)- script FSRS::fsr -1,{ set .@Maps$[0], "pvp_y_8-2"; set .@Name$[0], "Izlude"; set .@Limit[0], 128; for(set .@i,0; .@i<1; set .@i,.@i+1) set .@menu$, .@menu$+.@Name$[.@i]+" ["+getmapusers(.@Maps$[.@i])+" / "+.@Limit[.@i]+"]:"; set .@menu$, .@menu$+"Cancel."; set .@i, select(.@menu$)-1; if (.@i == 5) close; if (getmapusers(.@Maps$[.@i]) >= .@Limit[.@i]) { mes "[PVP Fight Square Reception Staff]"; mes "This map is currently full."; close; } announce "[ "+strcharinfo(0)+" ] has been join the battle!",0; warp .@Maps$[.@i],0,0; end;OnInit: waitingroom "PVP TAGISAN NG LAKAS",0;end;}//Fight Square Reception Staffaldebaran,146,172,4 duplicate(fsr) PVP#f1 685
  15. Oh I see , soo izlude map is the issue
  16. use search po.. madaming ganyang case na na solve na..
  17. close2; so that the following script will also run. then end;
  18. Mhalicot

    Push Error

    rightclick on forlder and choose TurtoiseGit>Cleanup
  19. try to replace it with else { announce "[ "+strcharinfo(0)+" ] has been join the battle.",0; close2; warp .@Maps$[.@i],0,0; end; }
  20. else { announce "[ "+strcharinfo(0)+" ] has been join the battle.",0; warp .@Maps$[.@i],0,0; close; } Try that.
  21. Madami nang ganyang Issue na na solve.. try to use search and also try Ness suggestion first
×
×
  • Create New...

Important Information

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