Jump to content

Capuche

Developer
  • Posts

    2407
  • Joined

  • Last visited

  • Days Won

    52

Everything posted by Capuche

  1. You can find the mapflag in npc folder.
  2. Can you post a screenshot of your errors? I think you have warning about 'non-existant item id'..
  3. Change 'maxcount' of your skill in skill_db.txt
  4. Post the script of the pvp ladder, we could recreate the table
  5. I don't understand your request, can you reformulate ?
  6. http://rathena.org/board/topic/82922-party-related-script-commands/ update your emu or replace while(.@i < 1) set .@i, party_create "i"+rand(100000000); by atcommand "@party i"+ rand(100000000);
  7. Replace if(.rrp == 10) { mes .@n$; mes "I'm sorry but the Event already begun!"; close; } set .rrp,.rrp+1; set .rra[.rrp],getcharid(3); set @rre,1; set @rre2,1; by if(.rrp == 10) { mes .@n$; mes "I'm sorry but the Event already begun!"; close; } set .@myaid, getcharid(3); for ( set .@i, 1; .@i <= .rrp; set .@i, .@i +1 ) if ( .rra[.@i] == .@myaid ) break; if ( .@i > .rrp ) { set .rrp,.rrp+1; set .rra[.rrp],getcharid(3); } set @rre,1; set @rre2,1; and replace all for(set .@i,0;.@i<=.rrp;set .@i,.@i+1) by for(set .@i,1;.@i<=.rrp;set .@i,.@i+1)
  8. You should make, at least, a minimum of search before creating a new topic. Seriously I wrote "mob respawn rathena" on google and 0,27 seconds later I found a doc with some examples. Permanent_Monster_Spawn
  9. means // #define RENEWAL_ASPD renewal aspd is enabled // #define RENEWAL_ASPD renewal aspd is disabled
  10. Maybe one guild member open his guildstorage and use @autotrade, so the gstorage stay open... well if you think it's a bug you may make a topic in the bug tracker
  11. to give allstats +1 regardless of the costume id, item combo db isn't the best way... for only 20 upper, mid, lower costumes he must write 20*20*20 lines...
  12. If you use item db by sql, you can change the weight in one go UPDATE `item_db_re` SET `weight`=0 otherwise by txt... well you can do it with some trick
  13. All of you use this npc..? Can someone provide the script, I'm lazy to search...
  14. Nope the variable @wear prevent multi-allstats, they get only allstats +1 when wearing the set of costumes (low, middle, up)
  15. To give allstats regardless the costumes ID : Method 1.For each costume ID in item_db add ...,{},{ if (getequipisequiped(EQI_COSTUME_HEAD_LOW) && getequipisequiped(EQI_COSTUME_HEAD_MID) && getequipisequiped(EQI_COSTUME_HEAD_TOP) ) { bonus bAllStats,1; set @wear,1; } },{ set @wear,0; } Method 2.Apply the patch for OnPCStatCalcEvent, recompile then load the following script : - script bonus_costumes -1,{ OnPCStatCalcEvent: if ( getequipisequiped(EQI_COSTUME_HEAD_LOW) && getequipisequiped(EQI_COSTUME_HEAD_MID) && getequipisequiped(EQI_COSTUME_HEAD_TOP) ) bonus bAllStats,1; end; }
  16. This message appear because of http://rathena.org/board/topic/86816-renewal-item-db-class-update-commit-5f12351/ otherwise I tested it, a soul link can wear the headgear
  17. Maybe changing all items weight to 0..
  18. the points are stored in mvp_point character variable. No need sql here. There is a lot of npc here to amke a trade, search. add if( .event_timer%3 ) end; .event_timer++; after OnMinute00
  19. You can't move maybe because of http://rathena.org/board/topic/81860-r17280-slight-script-engine-update/ add a message before the select or remove close2 to prevent ofr being stuck
  20. About woe 2, in agit_main_se add the sql update under OnStartArena OnStartArena: query_sql "update guild set woe_points = woe_points +1 where guild_id = "+ getcharid(2);
  21. 27159,...,{ if(Class==Job_Soul_Linker) { bonus bMatkRate,15; } },{ if(Class==Job_Soul_Linker) { sc_start4 sc_spirit, 360000, 5, 461,0,0; skilleffect 461, 5; } },{ }
  22. I believe if ( countitem(@Refiner_Protection) > 1 ) goto Refiner_Protected; should be if ( countitem(@Refiner_Protection) > 0 ) goto Refiner_Protected; otherwise even if you have 1 god anvil in your inventory, the protection doesn't work.
  23. Seem working for me.. post your current script.
  24. You want the mod only for your gm or for all player? For all (easiest) In all instance find and replace the amount in instance_check_party by the value you want (1) if (!instance_check_party(.@party_id,2)) {// change 2 to 1
  25. OnKilled: announce "MVP Event : End...MVP Died",0; set mvp_point, mvp_point + 1;// +1 mvp point end; to get points when killing a mvp - script iounoin -1,{ OnNPCKillEvent: if ( getmonsterinfo( killedrid,22 ) )// mvp exp set mvp_point, mvp_point + 1;// +1 mvp point end; }
×
×
  • Create New...