Jump to content

iSkiddo

Members
  • Posts

    94
  • Joined

  • Last visited

3 Followers

Profile Information

  • Gender
    Male
  • Location
    Malaysia

Recent Profile Visitors

2590 profile views

iSkiddo's Achievements

Poring

Poring (1/15)

0

Reputation

  1. No, but as you can see in the formula quoted above. LUCK of the caster can increase the freeze duration. LUCK of the target reduces chance to be affected but not duration. how about your mdef calculation ? how much minimum mdef do they required to reduce freeze duration sir ?
  2. are you referring to custom items or skill edit ?
  3. Frost duration should based on Mdef . means higher Mdef should reduce more frost duration . sorry for my bad english = =
  4. Hi guys , i got problem on my server something not right .. seems like every player tried to hit any mobs inside dungeon however they missed . not even single hit taken to mobs .. anyone please help me resolve this issues . Its would be really appreciate if you guys could help me on this . TQ
  5. i think quite similar but i need something that got those function . no need announcement 1 ? hee
  6. Hi guys , is there anyone got script for bosslair ? Function : - Need to use coins ( 7720 ) 10 pcs to enter room - Random MVP Bosses inside those room which player can party or solo to farm cards and equipment . - Every Mobs will be spawn every 1 mins after death. P/s : if anyone got this script please share . i tried to remake but seems like i got too many errors . Thank you .
  7. bump .. checked on this .. still not working .. luk total 150 .. total unfrozen ..
  8. Hi . i would like to ask can we edit src : in map/status.c case SC_FREEZE: sc_def = status->mdef*100; sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10; tick_def2 = status_src->luk*-10; // Caster can increase final duration with luk break; How do we change if Mdef = 60-70 mdef user will break freeze within 1 sec Meanwhile LUK = 150 or higher user hard to get frost Any ideas ? i did try to edit as below : case SC_FREEZE: sc_def = status->mdef*100; sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10; tick_def2 = status_src->mdef*-10; // Caster can increase final duration with luk break; but still failed .. hope someone could help me . i checked and tested on much src modification on rathena but still failed
  9. hi can i know how to fix if higher mdef = defrost rate with be below 2-3 sec .. if low mdef defrost rate will be more than 5-10 sec ? so player should get higher mdef to make defrost status below 3 sec ? sorry for my bad english
  10. Hi can i know if there is anyone has this script`s wav archives ?
  11. iSkiddo

    Token Loot

    //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ra_temple,75,145,4 script Token Loot 444,{ if (getgmlevel() >= 99) { // Edit to your desired GM Level mes "[ Event Manager ]"; mes "What do you want to do?"; menu "Start the Event",start,"Stop the Event",stop,"Nothing",-; close; start: donpcevent "Portal::onstart"; close; stop: donpcevent "Portal::OnDisable"; // Disable Event close; } end; // The NPC cannot be clicked by normal players. } ra_temple,73,137,4 script Portal 45,2,2,{ OnInit: donpcevent "Portal::OnDisable"; //So the event wont start without GM's access end; OnTouch: if( .Event ) sc_start SC_DECREASEAGI,1200000,10; percentheal 100,100; warp "schg_dun01",136,142; end; OnDisable: // The NPC do Nothing without GM's Access disablenpc "Portal"; set .DoEvent,0; set .Event,0; end; OnEnable: // Just allow the event to be started automatic enablenpc "Portal"; set .DoEvent,1; end; onstart: // Activate the event and start it immediatly. enablenpc "Portal"; set .DoEvent,1; if(!.DoEvent) end; OnMinute110: set .Event,1; hideoffnpc strnpcinfo(0); announce "Loot event has started. Rush to the Portal at Events Area.",0; enablenpc "Portal"; sleep ( 40 * 1000 ); // How long Portal Open ? announce "Portal will be close by now..",0; hideonnpc strnpcinfo(0); set .Event,0; monster "schg_dun01",0,0,"Special Poring",2502,150,strnpcinfo(0)+"::OnMobKilled"; sleep ( 60 * 1000 ); // Last how long the Event ? killmonster "schg_dun01","All"; mapwarp "schg_dun01","ra_temple",119,149; disablenpc "Portal"; end; OnMobKilled: monster "schg_dun01",0,0,"Special Poring",2502,50,strnpcinfo(0)+"::OnMobKilled"; end; } schg_dun01 mapflag nowarpto schg_dun01 mapflag noskill schg_dun01 mapflag nowarp schg_dun01 mapflag noteleport schg_dun01 mapflag nomemo schg_dun01 mapflag nosave schg_dun01 mapflag nobranch schg_dun01 mapflag noicewall schg_dun01 mapflag nopenalty schg_dun01 mapflag nobranch schg_dun01 mapflag noexp schg_dun01 mapflag noreturn schg_dun01 mapflag pvp_noparty Guys . Someone please help me check on this script . seems like its wont auto start . i place OnMinute110: even i tried OnClock but i dun know whether i place those code on the right place . Helps would be appreciated .
×
×
  • Create New...