Jump to content

Leaderboard

Popular Content

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

  1. Custom card sprites for using with minigame made from the complaint about lucky roulette not being social stimulation.. See it in action : pic https://www.dropbox.com/s/8kewon8dvwwuecl/MM_beta.mp4_snapshot_01.15_%5B2015.06.14_23.52.39%5D.jpg?dl=0
    1 point
  2. if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice || BaseJob == Job_Super_Baby || BaseJob == Job_Baby_Merchant || BaseJob == Job_Baby_Blacksmith || BaseJob == Job_Baby_Alchem || BaseJob == Job_Baby_Alchemist) && checkcart() == 0 && (getskilllv("MC_PUSHCART") > 0) ) { just use if( checkcart() == 0 && getskilllv("MC_PUSHCART") > 0 ) {
    1 point
  3. for the class check change this (25 is ninjas job ID, find other classes in const.txt) if (Class != 23 && (Class < 4008 || Class > 4022)) { mes "This feature is not available for your class."; close; } to if (Class != 23 && Class != 25 && (Class < 4008 || Class > 4022)) { mes "This feature is not available for your class."; close; } and for the item check for despecialize change this ( set 1st .@i to your custom ring base ID and set the .@i<= to your highest ring ID ) for (set .@i,3350; .@i<=3377; set .@i,.@i+1) if (countitem(.@i)>0) { sleep2 1000; goto Despecialize; } to for (set .@i,30782; .@i<=30783; set .@i,.@i+1) if (countitem(.@i)>0) { sleep2 1000; goto Despecialize; } and of course the part you already did looks fine, just repeat the process for each class and item here you are
    1 point
  4. Hello rA! I'm trying out some new things at the moment and I wonder, is there a way to make friendly monsters (ai type 1) immuned to players attacks? We can already set a master aid for the monster but then the monster follows the character all the time, I'd like the monster to be independant while beeing immuned to players attacks. Thx in advance
    1 point
  5. I'm on it! be patient. There you go, just edit this part to add your restriction job and pvp map. if (class == 4049 || class == 25) {mes "[PvP Warper]"; mes "Only Transcendents are allowed here"; close;} warp "guild_vs2",0,0; it means soul linker and ninja are prohibited on Trans pvp. i also add count user on menu is much better. pvp_warper.txt
    1 point
×
×
  • Create New...