Search results

  1. U

    Mapflag mapserver warning

    Q>what does this warning means This happen'd when I tried to do this: Map server error: A function call'ed on another npc with getmapflag check...of all mapflag found in constants
  2. U

    can I have multiple plugins combine into 1 single plugin

    Another thing I forgot 1. Can plugins be "rojak" into one plugin? 2. Is that consider healthy practice ???
  3. U

    Help on instance script

    prontera,150,180,5 script Instance Challenger 4_M_EINMINER,{ mes ( " Big sun Big day ! " ) ; dispbottom ( " #GRRoomDelay :: " + #GRRoomDelay ) ; switch ( select( "~ Create Instance", "~ Exit.", "~ Clear Instance" )){ case 3: instance_destroy( );//.@instance ); close; case 1...
  4. U

    2. can it be use as script onPCLogin?? and does this one stop gaining exp from mvp too?

    #include "common/hercules.h" #include "map/pc.h" #include "common/nullpo.h" #include "plugins/HPMHooking.h" #include "common/HPMDataCheck.h" HPExport struct hplugin_info pinfo = { "blockexp", SERVER_TYPE_MAP, "0.1", HPM_VERSION, }; bool pc_authok_post( bool retVal, struct...
  5. U

    1. how to make it not list clone monster? or slaveclone?

    - script BmapMobList -1,{ OnInit: bindatcmd "mapmoblist2", strnpcinfo(0)+"::Onaaa"; end; Onaaa: if ( .@atcmd_numparameters ) { if ( getmapusers(.@atcmd_parameters$) == -1 ) { dispbottom "Map not exist"; end; } .@map$ =...
  6. U

    About sanctuary, plugins, inventory, partyname showing, clone vs emperium

    1. how to make it not list clone monster? or slaveclone? 2. can it be use as script onPCLogin?? and does this one stop gaining exp from mvp too?   3. is there a way to sort inventory item ?? be it by item id or item name (ascending sort) ? 4 how to make sanctuary only heal allies (...
  7. U

    donpcevent and slaveclone trouble

    1. I was trying to make this work by                                         donpcevent "Guardian#"+.RTaken$[.@i]+"::OnSpawnGuardians"; but it's not working how do I fix this? deletearray (.RTaken$); .@menu$ = ""; .@c = 0; for ( .@i = 0 ; .@i < getarraysize(.castle$); ++.@i ) {...
  8. U

    H>why did it spitting this out???

    As we know that Thursday is emperium war day... on server start map server spiting multiple error of  these few lines may be 30 or more time. [Error]: script_rid2sd: fatal error ! player not attached! [Debug]: Function: strcharinfo (1 parameter): [Debug]: Data: constant name='PC_MAP' value=3...
  9. U

    H>Pet egg renewal fixing

    I have a broken pet egg exchanging old egg to new egg script which need help in fixing. - script F_PetTrader FAKE_NPC,{ disable_items; getinventorylist; for ( .@i = 0; .@i < @inventorylist_count; ++.@i ) { .@item_type = getiteminfo( @inventorylist_id[.@i], ITEMINFO_TYPE ); if (...
  10. U

    N>advice and help on comparing array loop

    First off don't get mad to link from rathena: https://rathena.org/board/topic/118192-on-checking-array-items-infinite-loop/ This is the test case I try to redo the thing but it's gotten into loop again and again. Don't get mad at me for not understanding this stuff.  I always ask things till...
  11. U

    Importfolder getarg land_skill_limit ItemAvail.txt @summon

    short questions first then long long question... 4. Why @summon'ed white plant or any thing can move but not  @summon 2042 (SilverSniper) or @summon 1511 (Amon ra) can't move at all? in eathena amonra moves if summon ( if memory serves me correctly or was it otherwise. ) 5. in cases of...
  12. U

    Specific Monster count on a map ( not mobcount command)

    I found this script  1. I hope to know how do I make a script to check for only a specific monster count from script without use bindatcmd? like directly check for specific monster count in a map but not other monster on the same map.
  13. U

    Put a stop on not found plugin so server dont loop restarting ?

    In a case where \conf\plugins.conf contains non existing plugin All 3 server will keep restarting and flashing while upon closing only map server show what error is so can there be a pause be put to pause execution of the server when plugin not found error occur??? to prevent infinite...
  14. U

    Assertion on skill teleportation error printed on map server

    First off I don't know where this belong to so putting it here. when using teleportation level 2 client 20180621 so is this a source packet error configured or not setting correctly?> mmo.h was compiled with      #define PACKETVER 20180620 //xsa
  15. U

    Crash rebellion random mapserver scriptcommand Class

    Why is that is you try to use npc to check player job class will randomly crashes mapserver  and mostly occur to rebellion or gunslinger class?? eg. prontera,154,174,5    script    Tester    4_M_PAY_SOLDIER,{     mes ("Good day~~!");     if ( Class == Job_Rebellion ) {         mes ("Class...
  16. U

    Help 1 read Maxlevel from exp_group_db.conf and 2 getstorageinventorylist

    1. I recently find out about this file. What can I do to read maxLevel from it? If ( I am magician ) { get maxlevel from exp_group_db.conf and blablabla... } 2. How to get array of item from storage?? I know of getinventorylist and getcartinventorylist but there is no...
  17. U

    H>how to I keep this active pet from getting listed??

    Q1 How and what should I add into this script to make it keep the current and active pet from being shown like in the attached picture? as you can see in the attached picture there is only Poring Egg and Bapho Jr. Egg in the inventory  but why inside script the menu showing lori ruri which is...
  18. U

    I need help converting this line from old eathena format to Hercules format

    from old eathena >> it does has this >> skill_unit_db.txt  and in skill_unit_db.txt has line as below 115,0x90,    ,  0, 1,1000,enemy, 0x28000    //HT_SKIDTRAP        <<  "Changed Line" and now in Hercules DB folder all other skill files is mashup and fix into on...
  19. U

    Help Removing duplicates value from array

    getinventorylist(); for ( .@i = 0; .@i < @inventorylist_count; .@i++ ) { setarray .@IdList[.@i],@inventorylist_id[.@i]; } Q1 For above code how would I remove duplicates item ID or extract only Unique Item ID within array of .@idList so the end result would be array with no...
Back
Top