Jump to content

Phantom Of Rogue-Gon

Members
  • Posts

    181
  • Joined

  • Last visited

Everything posted by Phantom Of Rogue-Gon

  1. - script Royal Invasion -1,{ OnClock0603: OnClock1757: setarray .@Towns$[0],"ars_fild12"; // Random town list set .map$, .@Towns$[rand(getarraysize(.@Towns$))]; set .@mob, 3613; // Mob ID set .count, 500; // Mob count monster .map$,0,0,strmobinfo(1,.@mob),.@mob,.count,strnpcinfo(0)+"::OnMobDead"; end; OnMobDead: set .count, .count-1; if (!.count) { set .@mob, 3622; // Boss ID monster .map$,0,0,strmobinfo(1,.@mob),.@mob,1,strnpcinfo(0)+"::OnMobDead2"; } end; OnMobDead2: announce strcharinfo(0)+" Emperor's Army has been annihilated! The Rune Midgard is Safe",0; sleep2 20000; announce "All Mighty Warrior who fought the emperor will be return to their lands. The Portal is closed.", bc_all; atcommand "@doommap"; end; } how can add this. lets say the Royal Invasion start this OnClock0603: and after 2 hrs if the mobs not dead this time OnClock0803: the command auto run atcommand "@killmonster"; is closed.", bc_all; atcommand "@doommap"; OnClock0803: atcommand "@killmonster"; end; } like this?
  2. hello can i request script lets say i have 3 mobs poring drop and poporing every 11am and 11pm autorun for ramdom summon in 1 map example 11am pop up the npc then entrance after 1 mins annouce this mob " this mob summon this map"
  3. who have a custom Patcher? please Share
  4. master if i change the entrance fee for refine items entrance Free is Cashpoint 10000 delete from the normal player the Cashpoint 10000 and if the player not enough Cashpoint she/he cant ups the item
  5. how to add Partyname announce?? i i kill 1 mob my Partyname is annouce
  6. hello guys can i request refine npc with this this 6238 id for entrance fee ticket example all equipment in alt Q are +7 safety except accessory , wings and lower and middle headgear
  7. - script Partypoints -1,{ OnNPCKillEvent: if( killedrid == 3600 ||killedrid == 3629 ||killedrid == 3628 || killedrid == 3627 ){ if( killedrid == 3600 ) set .@point,20; if( killedrid == 3629 ) set .@point,20; if( killedrid == 3628 ) set .@point,20; if( killedrid == 3627 ) set .@point,50; set .@party_id,getcharid(1); if( !.@party_id ){ set #CASHPOINTS,#CASHPOINTS + .@point; dispbottom "Gained "+.@point+" Cashpoints."; }else{ getpartymember .@party_id,1; getpartymember .@party_id,2; set .@acc_id, getcharid(3); set .@map$,strcharinfo(3); for( set .@i, 0; .@i < $@partymembercount; set .@i, .@i +1 ) if( isloggedin( $@partymemberaid[.@i],$@partymembercid[.@i] ) ) if( attachrid( $@partymemberaid[.@i] ) ) if( HP && strcharinfo(3) == .@map$ ) set .@online_count,.@online_count + 1; if( killedrid == 3627 || killedrid == 3628 || killedrid == 3629 ) .@point = .@point * .@online_count; // add this ... for( set .@i, 0; .@i < $@partymembercount; set .@i, .@i +1 ) if( isloggedin( $@partymemberaid[.@i],$@partymembercid[.@i] ) ) if( attachrid( $@partymemberaid[.@i] ) ) if( HP && strcharinfo(3) == .@map$ ){ set #CASHPOINTS, #CASHPOINTS + ( .@point / .@online_count ); dispbottom "Party Online : "+.@online_count+" - Cashpoint Arena "+( .@point / .@online_count )+" Cash Points."; } attachrid( .@acc_id ); dispbottom "All Your party member gained "+( .@point / .@online_count )+" cash point/s."; } } end; } like this? like this? same error master
  8. - script test1234 -1,{ OnNPCKillEvent: for(;.@i<.size;.@i++) if(killedrid== .cm[.@i]) set .@f,1; if(!.@f) end; set .@pid,getcharid(1); if(!.@pid)end; set .map$,strcharinfo(3)); addrid(2,0,.@pid); if( HP && .map$==strcharinfo(3)) set #CASHPOINTS,#CASHPOINTS+20; end; OnInit: setarray .cm[0],1002; //put mob id here set .size,getarraysize(.cm); } where can put the map i add 5 mobs and 3 type of cashpoint cashpoint 20 cashpoint 50 cashpoint 100
  9. master i got error from your script i replace your code to my code master this is error btw im EA master and can you add this mobs if( killedrid == 3629 = 20 cashpoints if( killedrid == 3628 = 20 cashpoints if( killedrid == 3627 = 20 cashpoints
  10. emistry how can i add another mobs and where can put the id of mobs? ill be add 5 mobs OnNPCKillEvent: .@party = getcharid(1); .@map$ = strcharinfo(3); if( .@party ){ addrid( 2,0,.@party ); if( HP > 1 && strcharinfo(3) == .@map$ ){ #CASHPOINTS += 20; } } end;
  11. - script Partypoints -1,{ OnNPCKillEvent: if( killedrid == 3600 ||killedrid == 3629 ||killedrid == 3628 || killedrid == 3627 ){ if( killedrid == 3600 ) set .@point,20; if( killedrid == 3629 ) set .@point,20; if( killedrid == 3628 ) set .@point,20; if( killedrid == 3627 ) set .@point,50; set .@party_id,getcharid(1); if( !.@party_id ){ set #CASHPOINTS,#CASHPOINTS + .@point; dispbottom "Gained "+.@point+" Cashpoints."; }else{ getpartymember .@party_id,1; getpartymember .@party_id,2; set .@acc_id, getcharid(3); set .@map$,strcharinfo(3); for( set .@i, 0; .@i < $@partymembercount; set .@i, .@i +1 ) if( isloggedin( $@partymemberaid[.@i],$@partymembercid[.@i] ) ) if( attachrid( $@partymemberaid[.@i] ) ) if( HP && strcharinfo(3) == .@map$ ) set .@online_count,.@online_count + 1; for( set .@i, 0; .@i < $@partymembercount; set .@i, .@i +1 ) if( isloggedin( $@partymemberaid[.@i],$@partymembercid[.@i] ) ) if( attachrid( $@partymemberaid[.@i] ) ) if( HP && strcharinfo(3) == .@map$ ){ set #CASHPOINTS, #CASHPOINTS + ( .@point / .@online_count ); dispbottom "Party Online : "+.@online_count+" - Cashpoint Arena "+( .@point / .@online_count )+" Cash Points."; } attachrid( .@acc_id ); dispbottom "All Your party member gained "+( .@point / .@online_count )+" cash point/s."; } } end; } this script share party cashpoint i have 2 member of my party when i kill this id 3627 i got 25 points but the original is 50 divide 2? =25 if one party 10 member got 10divide50= 5cashpoints i want to change the script if i kill 3627 id all party member got 50 points same my points not divided i i have 10 member of my party then i kill 3627 i got 50cashpoints and my party member got 50cashpoints each character
  12. can you replace the code? same error 7099,Old_Magic_Circle,Worn-out Magic Scroll,3,773,,10,,,,,,,,,,,,,{ input @warpto$; if(!isloggedin(getcharid(3,@warpto$)) { dispbottom "Player is either offline or doesn't exist."; getitem 7099,1; } atcommand "@goto "+@warpto$; end; },{},{} i got error
  13. example i have sroll and i want warp to another player
  14. im here request again about HP bar of mobs all mobs have HP bar .. if the mob is red light or green light HP
  15. i have script for this song npc list is work pm me if you want my script
  16. where the party script? if the player dead there are no cashpoint?
  17. can you explain it to me?? where can put the ID of mob?
  18. requsting Party points Cashpoint . 1 party in 1 map when the party kill 1 mob got 20Cashpoints
  19. can you show me the right replacing code
×
×
  • Create New...