Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/06/22 in all areas

  1. According to this code in skill.cpp, pnuema already doesn't work on land protector (iRO wiki says the same thing): switch (skill_id) { case AL_PNEUMA: //Pneuma doesn't work even if just one cell overlaps with Land Protector if(g_skill_id == SA_LANDPROTECTOR) break; If you want it to disappear on land protector, perhaps try one or more of these: Adding it to the return null list here in skill.cpp (look for the first part of the code, I've added it to the bottom): case WM_SEVERE_RAINSTORM: case SO_WATER_INSIGNIA: case SO_FIRE_INSIGNIA: case SO_WIND_INSIGNIA: case SO_EARTH_INSIGNIA: case AL_PNEUMA: if( map_getcell(src->m, x, y, CELL_CHKLANDPROTECTOR) ) return NULL; Or look for first part of this code in skill.cpp and add pneuma right before the break like I've done: switch (skill_id) { case SA_LANDPROTECTOR: if( unit->group->skill_id == SA_LANDPROTECTOR ) {//Check for offensive Land Protector to delete both. [Skotlex] (*alive) = 0; skill_delunit(unit); return 1; } //It deletes everything except traps and barriers if ((!(skill_get_inf2(unit->group->skill_id)&(INF2_TRAP)) && !(skill_get_inf3(unit->group->skill_id)&(INF3_NOLP))) || unit->group->skill_id == WZ_FIREPILLAR || unit->group->skill_id == GN_HELLS_PLANT) { if (skill_get_unit_flag(unit->group->skill_id)&UF_RANGEDSINGLEUNIT) { if (unit->val2&UF_RANGEDSINGLEUNIT) skill_delunitgroup(unit->group); } else skill_delunit(unit); return 1; } if( unit->group->skill_id == AL_PNEUMA ) { (*alive) = 0; skill_delunit(unit); return 1;} break;
    1 point
  2. View File Limited Items This script will limit the inventory of player if the player bring exceeded limitation items into the map. For Example : Configuration : // func_Add( <gm_level_to_bypass>, <map_name>, <item1>,<max_amount1>,....,<itemX>,<max_amountX> ); func_Add( 100,"prontera", 501,1,502,2,503,3,504,5 ); func_Add( 100,"payon", 501,1,502,2,503,3,504,5 ); func_Add( 100,"izlude", 501,1,502,2,503,3,504,5 ); func_Add( 100,"prt_fild08", 4001,1,4002,3,4003,0,504,5 ); Positive = Player can only bring Maximum of that amount of items. 0 = Totally Disabled, player cant bring any of it. Submitter Emistry Submitted 07/29/12 Category Utilities Content Author  
    1 point
  3. Version 1.0

    4794 downloads

    Full Credit's to Denny who made these maps, I'm just sharing them (of course with her permission) :> This Map Pack Contains: Glastheim Restored Uncursed Glastheim. All textures are cleaned, light maps edited, models changed. The Map comes with: - 10 Indoor maps - text file with all the warps for the indoors. - BGM that I felt will be a proper for the map Glastheim Winter Add-on Simple textures edit. You will still need the restored version first. Geffenia Restored Geffenia (or part of it anyway). The server where it was used had three races living there thus the map appears as if divided between elves and fiaries. Map comes with: - Indoor map. - text file with all the warps for the indoors. - BGM that I felt will be proper for the map. - Couple of NPCs - Mini Map Yggdrasill Tree Village A village situated at the Yggdrasill Tree`s roots. It is supposed to go with Geffenia. The Map comes with: - Mini Map Heidelberg Village situated south of Glastheim. It is meant to go with the Glastheim map. It is rather huge for a village actually. Map comes with: - Mini Map New Prontera A redesigned Prontera and I don`t mean retextured. This map is not meant to be placed over the old Prontera map. Sadly I lost the warp fixes so you have to adjust the warps on your own. Map comes with: - BGM that I felt will be proper for the map. - Mini Map Izlude Fair Izlude map redesigned for a fair. You know, like in Chrono Trigger only not as cool and awesome.Map comes with: Simple Arena Map Well if you want a simple medieval arena with like thrones for the royalties for whatever reasons, feel free to use this one. Map comes with: - BGM that I felt it will be proper for the map Shroom Underground Village A village for a race or people who live under ground. Base used for this was the cave map. Map comes with: - BGM that I felt it will be proper for the map. - Mini Map
    Free
    1 point
×
×
  • Create New...