Recent content by utofaery

  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

    Crash rebellion random mapserver scriptcommand Class

    #include "common/hercules.h" #include "map/pc.h" #include "common/HPMDataCheck.h" HPExport struct hplugin_info pinfo = { "getstoragelist", SERVER_TYPE_MAP, "x_O", HPM_VERSION, }; BUILDIN(getstoragelist) { struct map_session_data *sd = script->rid2sd(st); char...
  13. 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.
  14. 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...
Back
Top