Jump to content

AinsLord

Members
  • Posts

    758
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by AinsLord

  1. ohh how can i make it like 10% or 20%?
  2. does this script means the higher the number input the lower the chance or vise versa? if (countitem(.@costumeID) > 0 && countitem(.@stoneID) > 0) { delitem .@stoneID,1; if (rand(1,100) < 91) coz i tried lo make it like 30 the success is like 7/10 items just a little bit confuse thou thanks in advance
  3. thnx for this info @Emistry imma look for it on some NPC script have
  4. yea thats what i notice too but on my mapflags on payon there is like loadevent after i manually remove it via command everyone can enter payon with dual dunno why
  5. why the script i found is including payon for loadevent here is the scrip //===== Gogcel Ro Scripts ================================== //= No double login in one map //===== By: ================================================== //= Tauro //===== Current Version: ===================================== //= 1.00 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Avoid double login in 1 designated map and has unique_id //= by gepard //===== Comments: ============================================ //= Edit line 26 to use gepard authenticator or ip //= Edit line 64 if you use the system by ip //= Edit loadevent maps in line 86 //===== Contact Info: ======================================== //= [Tauro] //= Email: [email protected] //= Discord: Trinity#7962 //============================================================ - script dl_map -1,{ end; OnInit: // 1= if you have gepard 0=if you do not use gepard set .Gepard,1; end; OnPCLoadMapEvent: if (.Gepard == 1) { getmapxy(.@map$,.@mapx,.@mapy,0); query_sql("SELECT last_unique_id FROM `login` WHERE account_id = "+getcharid(3)+"", .@UniqueId$); query_sql("SELECT account_id FROM `login` WHERE last_unique_id = '"+.@UniqueId$+"'", .@CuentaId); set .@error,getcharid(3,strcharinfo(0)); for(set .@i ,0;.@i<getarraysize(.@CuentaId);set .@i,.@i+1) { if(attachrid(.@CuentaId[.@i])) { if (.@CuentaId == 2000001||.@CuentaId == 2000000) { set .@j,0; } else { getmapxy(.@map2$,.@mapx2,.@mapy2,0); if (.@map2$ == .@map$){ set .@j,.@j+1; } } } } detachrid; attachrid .@error; if(.@j > 1) { dispbottom "Double Login is not allowed on this map."; warp "prontera",156,183; } end; } else { getmapxy(.@map$,.@mapx,.@mapy,0); query_sql("SELECT last_ip FROM `login` WHERE account_id = "+getcharid(3)+"", .@UltimaIp$); query_sql("SELECT account_id FROM `login` WHERE last_ip = '"+.@UltimaIp$+"'", .@CuentaId); set .@error,getcharid(3,strcharinfo(0)); for(set .@i ,0;.@i<getarraysize(.@CuentaId);set .@i,.@i+1) { if(attachrid(.@CuentaId[.@i])) { //if .Gepard is 0 add id of accounts to which the system will not affect, brothers, couple, gms, etc ... .@CuentaId == accountId if (.@CuentaId == 2000001) { set .@j,0; } else { getmapxy(.@map2$,.@mapx2,.@mapy2,0); if (.@map2$ == .@map$){ set .@j,.@j+1; } } } } detachrid; attachrid .@error; if(.@j > 1) { dispbottom "Double Login is not allowed on this map."; warp "prontera",156,183; } end; } } //loadevents guild_vs2 mapflag loadevent guild_vs1 mapflag loadevent //guild_vs3 mapflag loadevent //guild_vs4 mapflag loadevent //guild_vs5 mapflag loadevent quiz_02 mapflag loadevent quiz_01 mapflag loadevent 06guild_01 mapflag loadevent thanks again in advance
  6. does the duplicate NPC can be hidden too or not? EDIT: I made it i hid all the duplicate NPCs thanks for help
  7. just like this one? kindly check the script //===== Hercules Script =========================================== //= King of Emperium Hill //===== By: ======================================================= //= AnnieRuru //===== Current Version: ========================================== //= 1.2 //===== Compatible With: ========================================== //= hercules & rathena 2018-04-08 //===== Description: ============================================== //= defends the emperium in the middle of the map until times up //===== Topic ===================================================== //= http://hercules.ws/board/topic/4495-gvg-king-of-emperium-hill/ //===== Additional Comments: ====================================== //= Finally there is a topic for this ! //================================================================= - script KoE FAKE_NPC,{ OnInit: hideoffnpc "The King#KoE"; disablenpc "Exit#KoE"; bindatcmd "koe", strnpcinfo(0)+"::OnCommand", 99,100; end; OnCommand: if ( compare( .@atcmd_parameters$, "on" ) ) goto L_start; else if ( compare( .@atcmd_parameters$, "off" ) ) goto L_end; else { dispbottom "type - '@koe on' to start the event"; dispbottom "type - '@koe off' to end the event"; } end; L_start: OnSun2000: // everyday 8pm starts if ( .start ) end; gvgon "koe"; announce "The King of Emperium Hill has begun!", bc_all; .start = true; hideoffnpc "The King#KoE"; disablenpc "Exit#KoE"; $koegid = 0; donpcevent "::OnRevKoE"; maprespawnguildid "koe", $koegid, 3; killmonster "koe", "KoE::OnEmpDead"; monster "koe",49,49, "EMPERIUM", 1288, 1, "KoE::OnEmpDead"; end; L_end: OnSun2100: // everyday 8:30pm ends gvgoff "koe"; announce "The King of Emperium Hill is over!", bc_all; .start = 0; enablenpc "Exit#KoE"; disablenpc "The King#KoE"; killmonster "koe", "KoE::OnEmpDead"; maprespawnguildid "koe", $koegid, 2; // uncomment this line to kick non-owner off the map when event ends end; OnEmpDead: $koegid = getcharid(2); announce "The current King of Emperium Hill is the ["+ strcharinfo(2) +"] guild.", bc_all; donpcevent "::OnRevKoE"; maprespawnguildid "koe", $koegid, 2; killmonster "koe", "KoE::OnEmpDead"; sleep 500; if ( .start ) monster "koe",50,50, "EMPERIUM", 1288, 1, "KoE::OnEmpDead"; end; } // KoE Entrance prontera,155,191,4 script The King#KoE::KoEmp 1_M_MERCHANT,{ mes "[The King]"; if ( !getcharid(2) ) { mes "You must have a guild to participate in the ^FF0000King of Emperium Hill Tournament^000000."; close; } mes "Hello."; mes "Would you like to participate in the ^FF0000King of Emperium Hill Tournament^000000?"; if ( select ( "Yes", "No" ) == 2 ) close; if ( !getvariableofnpc( .start, "KoE" ) ) close; switch( rand(1,4) ){ case 1: warp "koe", 14, 17; end; case 2: warp "koe", 14, 84; end; case 3: warp "koe", 85, 84; end; case 4: warp "koe", 85, 16; end; } } // KoE Exit koe,49,56,5 script Exit#KoE 1_M_BARD,{ mes "[Exit]"; mes "See ya."; close2; warp "Save",0,0; if ( getcharid(2) == $koegid ) getitem 7539, 1; // configure prize here - Poring Coin end; } // Flags koe,25,74,5 script King of Emperium Hill#1::koe_flag GUILD_FLAG,{ if ( !$koegid ) end; mes "[King of Emperium Hill]"; mes "The Current King of Emperium Hill is the ["+ getguildname($koegid) +"] guild."; close; OnInit: // Uncomment this line to make the emblem stay after @reloadscript OnRevKoE: flagemblem $koegid; end; } koe,39,40,3 duplicate(koe_flag) King of Emperium Hill#2 GUILD_FLAG koe,39,59,1 duplicate(koe_flag) King of Emperium Hill#3 GUILD_FLAG koe,60,59,7 duplicate(koe_flag) King of Emperium Hill#4 GUILD_FLAG koe,60,40,5 duplicate(koe_flag) King of Emperium Hill#5 GUILD_FLAG koe,74,74,3 duplicate(koe_flag) King of Emperium Hill#6 GUILD_FLAG koe,75,24,1 duplicate(koe_flag) King of Emperium Hill#7 GUILD_FLAG koe,26,24,7 duplicate(koe_flag) King of Emperium Hill#8 GUILD_FLAG prontera,155,191,4 duplicate(KoEmp) The King#KoE1 1_M_MERCHANT koe mapflag nobranch koe mapflag nomemo koe mapflag nopenalty koe mapflag noreturn koe mapflag nosave SavePoint koe mapflag noteleport //koe mapflag gvg_noparty //koe mapflag gvg koe mapflag nowarp koe mapflag nowarpto koe mapflag guildlock koe mapflag noicewall thanks in advance EDIT: im getting this error this one the koe entrance // KoE Entrance prontera,155,191,4 script The King#KoE::KoEmp 1_M_MERCHANT,{ mes "[The King]"; if ( !getcharid(2) ) { mes "You must have a guild to participate in the ^FF0000King of Emperium Hill Tournament^000000."; close; } mes "Hello."; mes "Would you like to participate in the ^FF0000King of Emperium Hill Tournament^000000?"; if ( select ( "Yes", "No" ) == 2 ) close; if ( !getvariableofnpc( .start, "KoE" ) ) close; switch( rand(1,4) ){ case 1: warp "koe", 14, 17; end; case 2: warp "koe", 14, 84; end; case 3: warp "koe", 85, 84; end; case 4: warp "koe", 85, 16; end; } }
  8. this is a KoE NPC and i tried to duplicate the entrance NPC but seems got some error on it heres the code this code is from @AnnieRuru //===== Hercules Script =========================================== //= King of Emperium Hill //===== By: ======================================================= //= AnnieRuru //===== Current Version: ========================================== //= 1.2 //===== Compatible With: ========================================== //= hercules & rathena 2018-04-08 //===== Description: ============================================== //= defends the emperium in the middle of the map until times up //===== Topic ===================================================== //= http://hercules.ws/board/topic/4495-gvg-king-of-emperium-hill/ //===== Additional Comments: ====================================== //= Finally there is a topic for this ! //================================================================= - script KoE FAKE_NPC,{ OnInit: disablenpc "The King#KoE"; disablenpc "Exit#KoE"; bindatcmd "koe", strnpcinfo(0)+"::OnCommand", 99,100; end; OnCommand: if ( compare( .@atcmd_parameters$, "on" ) ) goto L_start; else if ( compare( .@atcmd_parameters$, "off" ) ) goto L_end; else { dispbottom "type - '@koe on' to start the event"; dispbottom "type - '@koe off' to end the event"; } end; L_start: OnSun2000: // everyday 8pm starts if ( .start ) end; gvgon "koe"; announce "The King of Emperium Hill has begun!", bc_all; .start = true; enablenpc "The King#KoE"; disablenpc "Exit#KoE"; $koegid = 0; donpcevent "::OnRevKoE"; maprespawnguildid "koe", $koegid, 3; killmonster "koe", "KoE::OnEmpDead"; monster "koe",49,49, "EMPERIUM", 1288, 1, "KoE::OnEmpDead"; end; L_end: OnSun2100: // everyday 8:30pm ends gvgoff "koe"; announce "The King of Emperium Hill is over!", bc_all; .start = 0; enablenpc "Exit#KoE"; disablenpc "The King#KoE"; killmonster "koe", "KoE::OnEmpDead"; maprespawnguildid "koe", $koegid, 2; // uncomment this line to kick non-owner off the map when event ends end; OnEmpDead: $koegid = getcharid(2); announce "The current King of Emperium Hill is the ["+ strcharinfo(2) +"] guild.", bc_all; donpcevent "::OnRevKoE"; maprespawnguildid "koe", $koegid, 2; killmonster "koe", "KoE::OnEmpDead"; sleep 500; if ( .start ) monster "koe",50,50, "EMPERIUM", 1288, 1, "KoE::OnEmpDead"; end; } // KoE Entrance prontera,155,191,4 script The King#KoE 1_M_MERCHANT,{ mes "[The King]"; if ( !getcharid(2) ) { mes "You must have a guild to participate in the ^FF0000King of Emperium Hill Tournament^000000."; close; } mes "Hello."; mes "Would you like to participate in the ^FF0000King of Emperium Hill Tournament^000000?"; if ( select ( "Yes", "No" ) == 2 ) close; if ( !getvariableofnpc( .start, "KoE" ) ) close; switch( rand(1,4) ){ case 1: warp "koe", 14, 17; end; case 2: warp "koe", 14, 84; end; case 3: warp "koe", 85, 84; end; case 4: warp "koe", 85, 16; end; } } // KoE Exit koe,49,56,5 script Exit#KoE 1_M_BARD,{ mes "[Exit]"; mes "See ya."; close2; warp "Save",0,0; if ( getcharid(2) == $koegid ) getitem 7539, 1; // configure prize here - Poring Coin end; } // Flags koe,25,74,5 script King of Emperium Hill#1::koe_flag GUILD_FLAG,{ if ( !$koegid ) end; mes "[King of Emperium Hill]"; mes "The Current King of Emperium Hill is the ["+ getguildname($koegid) +"] guild."; close; OnInit: // Uncomment this line to make the emblem stay after @reloadscript OnRevKoE: flagemblem $koegid; end; } koe,39,40,3 duplicate(koe_flag) King of Emperium Hill#2 GUILD_FLAG koe,39,59,1 duplicate(koe_flag) King of Emperium Hill#3 GUILD_FLAG koe,60,59,7 duplicate(koe_flag) King of Emperium Hill#4 GUILD_FLAG koe,60,40,5 duplicate(koe_flag) King of Emperium Hill#5 GUILD_FLAG koe,74,74,3 duplicate(koe_flag) King of Emperium Hill#6 GUILD_FLAG koe,75,24,1 duplicate(koe_flag) King of Emperium Hill#7 GUILD_FLAG koe,26,24,7 duplicate(koe_flag) King of Emperium Hill#8 GUILD_FLAG koe mapflag nobranch koe mapflag nomemo koe mapflag nopenalty koe mapflag noreturn koe mapflag nosave SavePoint koe mapflag noteleport //koe mapflag gvg_noparty koe mapflag nowarp koe mapflag nowarpto koe mapflag guildlock koe mapflag noicewall im trying to do it but seems cant hide the duplicate npc and got some error like "trying to hide failed" but the NPC and duplicates are working fine its just the NPC is not hidden or disable anyone can help me thanks in advance
  9. did i do it right regarding this code OnMon2000: donpcevent "Event_Bombring::OnStart"; end; OnTue1400: donpcevent "Event_Dice::OnStart"; end; OnTue2300: donpcevent "Event_Dice::OnStart"; end; OnWed0900: donpcevent "Poring_Catcher::OnStart"; end; OnWed1800: donpcevent "Poring_Catcher::OnStart"; end; OnThur1200: donpcevent "Event_NvZ::OnStart"; end; OnThur2100: donpcevent "Event_NvZ::OnStart"; end; OnFri1600: donpcevent "Poring_Hunter::OnStart"; end; OnFri2300: donpcevent "Poring_Hunter::OnStart"; end; OnSat1800: donpcevent "Event_LMS::OnStart"; end; coz im confused if onThu or onThur but the rest was good? thnx in advance
  10. yes i removed the mf_restricted on the script it works and put it on restricted.txt but when i tried to commend the one on the restricted.txt and try the one on the script doesnt work
  11. sorry to bump on this but i just wanted to ask how can this script choose location for each guild prontera,155,191,4 script The King#KoE 1_M_MERCHANT,{ mes "[The King]"; if ( !getcharid(2) ) { mes "You must have a guild to participate in the ^FF0000King of Emperium Hill Tournament^000000."; close; } mes "Hello."; mes "Would you like to participate in the ^FF0000King of Emperium Hill Tournament^000000?"; if ( select ( "Yes", "No" ) == 2 ) close; if ( !getvariableofnpc( .start, "KoE" ) ) close; switch( rand(1,4) ){ case 1: warp "koe", 14, 17; end; case 2: warp "koe", 14, 84; end; case 3: warp "koe", 85, 84; end; case 4: warp "koe", 85, 16; end; } } is it possible? thanks in advance
  12. im trying to disable all healing items on certain may specially for LMS here is the mapflag used on script so i add the restricted "2" for pvp on this particular map - script Event_LMS -1,{ OnInit: // Mapflags setarray .@mapflag, mf_nowarp, mf_nowarpto, mf_noskill, mf_noteleport, mf_nomemo, mf_nosave, mf_pvp_noguild, mf_pvp_noparty, mf_noicewall, mf_nobranch, mf_restricted, 2, //- added mf_noreturn; this is may item_noequip.txt 501,64 // Red Potion 502,64 // Orange Potion 503,64 // Yellow Potion 504,64 // White Potion 507,64 // Red Herb 508,64 // Yellow Herb 509,64 // White Herb i made it 64 so it only reads the zone 2 so with this mf_restricted, 2, on script above it wont work but if i put the map here restricted.txt //Jail sec_pri mapflag restricted 2 06guild_01 mapflag restricted 2 the restricted mapflag works why is that isnt the "mf_restricted, 2," works the same or they dont? or i did wrong on mf_restricted, 2, thanks in advance
  13. @Mastagoon sir this is the script that im going to use regarding the bindcommand - script maintown -1,{ OnInit: bindatcmd "maintown",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if(gettimetick(2) < cooldowntime) { dispbottom "Please wait "+(cooldowntime - gettimetick(2))+" seconds."; end; } atcommand "@warp alexandria 158 144"; set cooldowntime, gettimetick(2) + 10; end; } where should i put the script? heres what i made - script maintown -1,{ OnInit: bindatcmd "maintown",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: .@tick = logout_tick(); dispbottom "You have been in combat "+.@tick/1000+" seconds ago."; if(.@tick >= 5000 || .@tick == 0) atcommand "@warp alexandria 158 144"; else dispbottom "You cannot use this command if you have been in combat during the last 5 seconds."; end; } thanks again in advance
  14. thnx a lot again will there be a problem announcing the map where the NPC hides or none? PS : none XD thanks again
  15. very much thank you i do really appreciate this edit: @Mastagoon i got this error showing on my console here was the script i edit i dunno if i put it on wrong place but i followed the instructions //===== rAthena Script ======================================= //= Find the gm event (hide and seek) //===== By: ================================================== //= Mastagoon //===== Description: ========================================= //= The npc (GM sprite) will teleport to a random location on //= the map, and will open a waiting room. The first player to //= join that waiting room will win the round. //===== Current Version: ===================================== //= 1.0 //===== Featuers: ============================================ //= Can set the number of rounds, map, item&zeny rewards. //= the event can start manually or automatically. //= There is another version of this script compatiable with //= Stolao's event manager. You can DM me if you want that file. //============================================================ alexandria,166,155,4 script GM Masta#findgm 871,{ if(.status < 2) { mes "["+.npcName+"]"; mes "When the event begins, i will teleport to a random location on this map."; mes "And you need to find me to win!"; close; } end; OnInit: //SETTINGS .rounds = 5; // for how many rounds should the event last? .map$ = "prontera"; // the event where the gm will hide setarray .maps$[0], 'prontera', 'izlude', 'geffen'; .itemReward = 1; setarray .rewards[0],6379,5,7227,5; // [itemId, itemAmount, {....}] .zenyReward = 0; .zenyAmount = 10000; .debugMode = 0; .npcName$ = "GM Kiks"; .countdown = 3; // the time between event announcements and when the event actually starts. .automatic = 1; // automatic event or does it need a gm to run it manually? .runEvery = 3; // (ignore if manual) run the event ever X hours .offset = 1; // (ignore if manual) sometimes, you might have another event/announcement at the same time as the event announcement. you can set an offset (announce X minutes after event time.) // Do not edit the code below. if(.countdown < 0) .countdown = 1; if(.rounds < 1) .rounds = 1; if(.winnersPerRound < 1) .winnersPerRound = 1; for(.@i = 0; .@i < getarraysize(.rewards); .@i = .@i+2) { if(getitemname(.rewards[.@i]) == "null") { debugmes "[Find GM]: Invalid item id provided "+.rewards[.@i]+" removing item from the rewards list.."; deletearray .rewards[.@i],2; .@i -= 2; } } .status = 0; bindatcmd("eventstart", strnpcinfo(3)+"::OnEventAnnounce",60,99); strnpcinfo(3); end; OnMinute00: if(.status || !.automatic || gettime(DT_HOUR) % .runEvery != 0 || agitcheck() || agitcheck2() || agitcheck3()) end; sleep .offset * 1000 * 60; OnEventAnnounce: .status = 1; for(.@i = .countdown; i > 0; i--) { announce "[Find "+.npcName$+"] : The event will begin in "+callfunc("F_InsertPlural",.@i,"minute")+"!",bc_all|bc_blue; sleep .debugMode ? 5000 : 60000; } announce "[Find "+.npcName$+"] : The event has now begun!",bc_all|bc_blue; OnEventStart: .map$ = .maps$[rand(getarraysize(.maps$))]; sleep 2000; npctalk "I will now teleport to a random location"; sleep 2000; npctalk "You must find me to win the event!"; sleep 2000; npctalk "This event will last for "+callfunc("F_InsertPlural",.rounds,"round"); sleep 2000; npctalk "Goodluck!"; donpcevent strnpcinfo(3)+"::OnRoundStart"; .status = 2; .round = 1; end; OnRoundStart: initnpctimer; do { .@x = rand(0,450); .@y = rand(0,450); } while (!checkcell(.map$,.@x,.@y,cell_chkpass)); unitwarp getnpcid(0),.map$,.@x,.@y; debugmes "[Event]: npc is at: "+.@x+" & "+.@y; announce "[Find "+.npcName$+"] :"+.npcName$+" is hiding in a random place in "+.map$+", Find him now!",bc_all|bc_blue; delwaitingroom; waitingroom "Here!", 2, strnpcinfo(3)+"::OnRoundEnd",1; .status = 2; end; OnRoundEnd: if(.status != 2) end; .status = 1; //#TODO the winner should be already attached here no? getwaitingroomusers strnpcinfo(3); for(.@i = 0; .@i < getarraysize(.@waitingroom_users); .@i++) { if(.@waitingroom_users[.@i] > 0) { .@winner = .@waitingroom_users[.@i]; } } if(!attachrid(.@winner)) { .status = 2; end; } specialeffect2 EF_SPHERE; announce .npcName$+": I've been found by "+strcharinfo(0)+"!",bc_all|bc_blue; if(.itemReward) { for(.@i = 0; .@i < getarraysize(.rewards); .@i = .@i +2) { getitem .rewards[.@i],.rewards[.@i+1]; } } if(.zenyReward) { Zeny += .zenyAmount; dispbottom "You've gained "+.zenyAmount+" zeny for winning a round in the event."; } sleep 1000; if(.round >= .rounds) { donpcevent strnpcinfo(3)+"::OnEventEnd"; end; } .round++; donpcevent strnpcinfo(3)+"::OnRoundStart"; end; OnEventEnd: .status = 0; announce "[Find "+.npcName$+"]: The event is over! thank you for participating.",bc_all|bc_blue; unitwarp getnpcid(0),.map$,195,58; delwaitingroom; sleep 5000; end; OnTimer1800000: if(.status) { stopnpctimer; donpcevent strnpcinfo(3)+"::OnEventEnd"; } end; } thanks again
  16. i would like to have some edit with the PVP script i found what should i put when it needs to announce everyone who enters the PVP here is the script: - script PvP Warper 843,{ mes "[ ^ff0000PVP Warper^000000 ]"; mes "Do you want to warp to the PvP Arena and fight your enemies?"; menu "Sure, Bring it on!",L_Yes,"Nah, I'm not ready yet.",L_No; L_Yes: next; mes "[ ^ff0000PVP Warper^000000 ]"; mes "Which PvP Arena do you want to enter?"; menu "PvP Arena [ Ancient - Normal ] [" + getmapusers("guild_vs3.gat") + " / 20]",L1, "PvP Arena [ No - Yggdrasil Berry ] [" + getmapusers("guild_vs4.gat") + " / 20]",L2; L1: if (getmapusers("guild_vs3.gat") >= 20) goto Lsorry; warp "guild_vs3",0,0; close; L2: if (getmapusers("guild_vs4.gat") >= 20) goto Lsorry; if(countitem(607)) goto Lsorry2; warp "guild_vs4",0,0; close; Lsorry: next; mes "[ ^ff0000PVP Warper^000000 ]"; mes "Sorry but this PvP Arena is full, maybe you could try another one."; close; Lsorry2: next; mes "[ ^ff0000PVP Warper^000000 ]"; mes "I'm sorry but you can't have any "+getitemname(607)+" when entering the pvp room, please storage them and try again."; close; L_No: close; } // Mapflags //force_4-1 mapflag pvp guild_vs3 mapflag pvp guild_vs4 mapflag pvp alexandria,151,151,5 duplicate(PvP Warper) PvP Warper#Alex 843 hugel,101,147,4 duplicate(PvP Warper) PvP Warper#hugel 843 alberta,31,239,4 duplicate(PvP Warper) PvP Warper#alber 843 //force_4-1 mapflag nocommand 99 //force_4-1 mapflag nosave SavePoint //force_4-1 mapflag noteleport //force_4-1 mapflag nowarp //force_4-1 mapflag nowarpto //force_4-1 mapflag nomemo //force_4-1 mapflag notrade //force_4-1 mapflag noreturn //force_4-1 mapflag nobranch //guild_vs3 mapflag nocommand 99 guild_vs3 mapflag nosave SavePoint guild_vs3 mapflag noteleport guild_vs3 mapflag nowarp guild_vs3 mapflag nowarpto guild_vs3 mapflag nomemo guild_vs3 mapflag notrade guild_vs3 mapflag noreturn guild_vs3 mapflag nobranch guild_vs4 mapflag nocommand 99 guild_vs4 mapflag nosave SavePoint guild_vs4 mapflag noteleport guild_vs4 mapflag nowarp guild_vs4 mapflag nowarpto guild_vs4 mapflag nomemo guild_vs4 mapflag notrade guild_vs4 mapflag noreturn guild_vs4 mapflag nobranch thanks in advance
  17. update to this heres mine with most of mini are listed im still trying to add the monsters that are not normally spawned .Blacklist$ = // Blacklisted mob IDs. "1062,1088,1183,1186,1200,1212,1220,1221,1234,1235,"+ "1244,1245,1250,1268,1290,1293,1294,1296,1298,1299,"+ "1300,1301,1303,1304,1305,1306,1308,1309,1311,1313,"+ "1515,1588,1618,1676,1677,1678,1679,1796,1797,1974,"+ "1975,1976,1977,1978,1979,1089,1096,1388,1641,1830,"+ "1839,1307,1283,1302,1582,1091,1093,1205,1783,1681,"+ "1120,1929,1259,1990,1626,1643,1645,1720,1919,1921,"+ "1918,1920,1640,1090,1289,1262,1203,1956,1700,1295,"+ "1320,1894,1702,1701,1754,1755,1644,1703,1829,1991,"+ "1705,1710,1707,1712,1706,1711,1704,1709,1960,1961,"+ "1959,1958,1204,1092,1765,1642";
  18. example i do have @mall bindcmd can this have like cant use when your being hit by monsters on in PK maps?? coz as far as i know the only commands can have this are the @go/warp/jump thnx for hel appreciate it
  19. im using 2018 client im not yet used to the 2020 client which needs webservice something
  20. thnx thnx @Radian in addition to this post how can i add additional maps where the NPC hide like randomly i was trying to put .map$ = "prontera"||"izlue"; // the event where the gm will hide im getting error
  21. thanks a lot ill try this one PS: @Tokei tested out still has the same error
  22. this is the NPC script that im using //===== rAthena Script ======================================= //= Find the gm event (hide and seek) //===== By: ================================================== //= Mastagoon //===== Description: ========================================= //= The npc (GM sprite) will teleport to a random location on //= the map, and will open a waiting room. The first player to //= join that waiting room will win the round. //===== Current Version: ===================================== //= 1.0 //===== Featuers: ============================================ //= Can set the number of rounds, map, item&zeny rewards. //= the event can start manually or automatically. //= There is another version of this script compatiable with //= Stolao's event manager. You can DM me if you want that file. //============================================================ alexandria,166,155,4 script GM Masta#findgm 871,{ if(.status < 2) { mes "["+.npcName+"]"; mes "When the event begins, i will teleport to a random location on this map."; mes "And you need to find me to win!"; close; } end; OnInit: //SETTINGS .rounds = 5; // for how many rounds should the event last? .map$ = "prontera"; // the event where the gm will hide .itemReward = 1; setarray .rewards[0],6379,5,7227,5; // [itemId, itemAmount, {....}] .zenyReward = 0; .zenyAmount = 10000; .debugMode = 0; .npcName$ = "GM Kiks"; .countdown = 3; // the time between event announcements and when the event actually starts. .automatic = 1; // automatic event or does it need a gm to run it manually? .runEvery = 3; // (ignore if manual) run the event ever X hours .offset = 1; // (ignore if manual) sometimes, you might have another event/announcement at the same time as the event announcement. you can set an offset (announce X minutes after event time.) // Do not edit the code below. if(.countdown < 0) .countdown = 1; if(.rounds < 1) .rounds = 1; if(.winnersPerRound < 1) .winnersPerRound = 1; for(.@i = 0; .@i < getarraysize(.rewards); .@i = .@i+2) { if(getitemname(.rewards[.@i]) == "null") { debugmes "[Find GM]: Invalid item id provided "+.rewards[.@i]+" removing item from the rewards list.."; deletearray .rewards[.@i],2; .@i -= 2; } } .status = 0; bindatcmd("eventstart", strnpcinfo(3)+"::OnEventAnnounce",60,99); strnpcinfo(3); end; OnMinute00: if(.status || !.automatic || gettime(DT_HOUR) % .runEvery != 0 || agitcheck() || agitcheck2() || agitcheck3()) end; sleep .offset * 1000 * 60; OnEventAnnounce: .status = 1; for(.@i = .countdown; i > 0; i--) { announce "[Find "+.npcName$+"] : The event will begin in "+callfunc("F_InsertPlural",.@i,"minute")+"!",bc_all|bc_blue; sleep .debugMode ? 5000 : 60000; } announce "[Find "+.npcName$+"] : The event has now begun!",bc_all|bc_blue; OnEventStart: sleep 2000; npctalk "I will now teleport to a random location"; sleep 2000; npctalk "You must find me to win the event!"; sleep 2000; npctalk "This event will last for "+callfunc("F_InsertPlural",.rounds,"round"); sleep 2000; npctalk "Goodluck!"; donpcevent strnpcinfo(3)+"::OnRoundStart"; .status = 2; .round = 1; end; OnRoundStart: initnpctimer; do { .@x = rand(0,450); .@y = rand(0,450); } while (!checkcell(.map$,.@x,.@y,cell_chkpass)); unitwarp getnpcid(0),.map$,.@x,.@y; debugmes "[Event]: npc is at: "+.@x+" & "+.@y; announce "[Find "+.npcName$+"] :"+.npcName$+" is hiding in a random place in "+.map$+", Find him now!",bc_all|bc_blue; delwaitingroom; waitingroom "Here!", 2, strnpcinfo(3)+"::OnRoundEnd",1; .status = 2; end; OnRoundEnd: if(.status != 2) end; .status = 1; //#TODO the winner should be already attached here no? getwaitingroomusers strnpcinfo(3); for(.@i = 0; .@i < getarraysize(.@waitingroom_users); .@i++) { if(.@waitingroom_users[.@i] > 0) { .@winner = .@waitingroom_users[.@i]; } } if(!attachrid(.@winner)) { .status = 2; end; } specialeffect2 EF_SPHERE; announce .npcName$+": I've been found by "+strcharinfo(0)+"!",bc_all|bc_blue; if(.itemReward) { for(.@i = 0; .@i < getarraysize(.rewards); .@i = .@i +2) { getitem .rewards[.@i],.rewards[.@i+1]; } } if(.zenyReward) { Zeny += .zenyAmount; dispbottom "You've gained "+.zenyAmount+" zeny for winning a round in the event."; } sleep 1000; if(.round >= .rounds) { donpcevent strnpcinfo(3)+"::OnEventEnd"; end; } .round++; donpcevent strnpcinfo(3)+"::OnRoundStart"; end; OnEventEnd: .status = 0; announce "[Find "+.npcName$+"]: The event is over! thank you for participating.",bc_all|bc_blue; unitwarp getnpcid(0),.map$,195,58; delwaitingroom; sleep 5000; end; OnTimer1800000: if(.status) { stopnpctimer; donpcevent strnpcinfo(3)+"::OnEventEnd"; } end; } this is the error showing when the NPC is trying to automatically start and how can i add other map where the NPC hides like randomly maps? thnx in advance highly appreciate it
×
×
  • Create New...