Jump to content

itsmeyoe

Members
  • Posts

    54
  • Joined

  • Last visited

1 Follower

Profile Information

  • Gender
    Male
  • Location
    Tuguerao City

Recent Profile Visitors

2159 profile views

itsmeyoe's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

1

Reputation

  1. Please Help. I want to put penalty when player killing the same person 10x -30 #pvppoints, 1 minute mute then warp save point. - script pvppoint -1,{ OnInit: set .killaddpoint, 1; //points to add when kill set .diedeductpoint, 1; //points to deduct when died setarray .points,"#pvppoints","PVP Points";end; OnPCKillEvent: if(!getmapflag(strcharinfo(3),mf_pvp)) end; if(getcharid(3)==killedrid) end; set #pvppoints, #pvppoints+.killaddpoint; dispbottom "You killed "+rid2name(killedrid)+" you gained "+.killaddpoint+" PVP Points."; dispbottom "You got total "+#pvppoints+" Points."; attachrid(killedrid); set #pvppoints, #pvppoints-.diedeductpoint; dispbottom "You are killed by "+rid2name(killerrid)+" you lost "+.diedeductpoint+" PVP Points."; dispbottom "You got total "+#pvppoints+" Points."; end; }
  2. Regarding Frost Luk Below 300 luk 5 seconds frost 300 Luk = 2 seconds frost Thanks2
  3. Hi everyone, need help regarding champion explosion animation skill delay. Thanks.
  4. Teach me how please i'm using skill.cpp & how to put it on skill_tree? ty2
  5. First Level (1/4) - 3 Acolytes Second Level (2/4) - 3 High Priests Third Level (3/4) - 3 Sniper Fourth Level (4/4) - 3 Lord Knights
  6. This script on my item_db2 20507,Spirit_of_Wizard,Spirit of Wizard,2,2,,10,,,,,0x00000200,7,2,,,,,,{ if(Class==Job_Wizard||Class==Job_High_Wizard) { delitem 20507,1; callfunc "Linked"; } },{ },{} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ function script Linked { switch ( basejob ) { case Job_Wizard: set .@spirit, 453; break; default: if ( upper == 1 && baselevel < 70 ) set .@spirit, 494; } if ( .@spirit ) { sc_start4 sc_spirit, 360000, 5, .@spirit,0,0; specialeffect2 503; specialeffect2 6; message strcharinfo(0), ""+strcharinfo(0)+" soul is now linked."; if (SkillPoint) { atcommand "@allskill"; } if (Class == Job_Wizard || Class == Job_High_Wizard) { if( getstatus( SC_SPIRIT ) ){ bonus bMaxHPRate,10; } } } end; } - script SKILLZ -1,{ OnPCStatCalcEvent: if (SkillPoint) { atcommand "@allskill"; } if (Class == Job_Wizard || Class == Job_High_Wizard) { if( getstatus( SC_SPIRIT ) ){ bonus bMaxHPRate,10; } } end; }
  7. Hi sir good evening, about gepard pm thanks.

  8. @Emistry i use the script u gave the problem now is like this one.
  9. Where to fix this one i want it to be the old style of old purple box when your inventory is full the item should be drop.
  10. prontera,131,207,5 script WoE Rank#PvP 421,{ mes "[ ^FF0000Top 10 WoE Killers^000000 ]"; if ( .@size = getarraysize( $topwoe1pvp_name$ ) ) { for ( .@i = 0; .@i < .@size; .@i++ ) mes ""+( .@i +1 )+": ^0000FF"+ $topwoe1pvp_name$[.@i] +"^000000 - ^FF0000"+ $topwoe1pvp_points[.@i] +"^000000 Kill."; } else mes "<empty>"; close; OnPCKillEvent: if ( !getmapflag( strcharinfo(3), mf_gvg_castle ) ) end; topwoe1pvp_points++; .@i = 0; while ( .@i < .ladderlength ) { if ( topwoe1pvp_points > $topwoe1pvp_points[.@i] ) { // if found if ( $topwoe1pvp_name$[.@i] == strcharinfo(0) ) { // update your own points $topwoe1pvp_points[.@i] = topwoe1pvp_points; break; } else if ( .@i == .ladderlength - 1 ) { // last position of the ladder, just overwrite the value $topwoe1pvp_points[.@i] = topwoe1pvp_points; $topwoe1pvp_name$[.@i] = strcharinfo(0); break; } // if more points, but somehow its not your own name .@j = .@i +1 ; // save the index while ( $topwoe1pvp_name$[.@j] != strcharinfo(0) && .@j < .ladderlength ) .@j++; if ( .@j < .ladderlength ) // found your name .@moveamount = .@j - .@i; // save amount to move else // if not found ... .@moveamount = .ladderlength - 1 - .@i; // means move the whole ladder from the last index copyarray $topwoe1pvp_points[.@i +1], $topwoe1pvp_points[.@i], .@moveamount; copyarray $topwoe1pvp_name$[.@i +1], $topwoe1pvp_name$[.@i], .@moveamount; $topwoe1pvp_points[.@i] = topwoe1pvp_points; $topwoe1pvp_name$[.@i] = strcharinfo(0); break; } .@i++; } end; OnInit: .ladderlength = 10; end; }
  11. We got a problem on itembound we set it for guild but after many hours the item will suddenly disappear in your inventory.
  12. Requesting Longest Agit Defender guild for Item it will base on the woe setter setting
  13. Players are abusing the use of this npc so i want it to make with timeout 1 minute before a player can use it again.
×
×
  • Create New...