Cid Kagenou Posted July 25, 2014 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 107 Reputation: 5 Joined: 07/01/14 Last Seen: March 28 Share Posted July 25, 2014 (edited) Hi Guys , i took a gold room script from the forum but it doesnt work , idk why , i copy paste everything just edited the script location what i want from this script is warping players to "ordeal_1-2" and there is a lot of spawned dokebies every monster should drop this item "7773" its a war badge . hope you guys help me with this Here's the script : caspen,162,184,4 script Farm Zone 561,{mes "Do you want to enter my Farm room?";menu "Ok",-,"No thanks.",L_No;warp "ordeal_1-2",154,270;close;L_No:close;end;}// --------------------------------------------------------------- script Monsters -1,{OnInit:OnNPCKillEvent:if ( strcharinfo(3) == "ordeal_1-2" ) {if( killedrid = 1110){ getitem 7773,1;}end;}}// Monstersordeal_1-2,0,0 monster Fenix 1110,70ordeal_1-2,0,0 monster Fenix 1110,100ordeal_1-2,0,0 monster Fenix 1110,100ordeal_1-2,0,0 monster Fenix 1110,100ordeal_1-2,0,0 monster Fenix 1110,100ordeal_1-2,0,0 monster Fenix 1110,100ordeal_1-2,0,0 monster Fenix Guardian 1439,3ordeal_1-2,0,0 monster Fenix Guardian 1439,3// Warpsordeal_1-2,130,193,0 warp testwrp#1 3,3,ordeal_1-2,154,154ordeal_1-2,106,154,0 warp testwrp#2 3,3,ordeal_1-2,154,154ordeal_1-2,201,129,0 warp testwrp#3 3,3,ordeal_1-2,154,154ordeal_1-2,177,193,0 warp testwrp#4 3,3,ordeal_1-2,154,154 Edited July 25, 2014 by spe3y Quote Link to comment Share on other sites More sharing options...
Pneuma Posted July 26, 2014 Group: Members Topic Count: 82 Topics Per Day: 0.02 Content Count: 846 Reputation: 138 Joined: 02/26/14 Last Seen: March 7, 2018 Share Posted July 26, 2014 Hi Guys , i took a gold room script from the forum but it doesnt work , idk why i copy paste everything just edited the script location Here's the script : caspen,162,184,4 script Farm Zone 561,{ mes "Do you want to enter my Farm room?"; menu "Ok",-,"No thanks.",L_No; warp "ordeal_1-2",154,270; close; L_No: close; end; } // -------------------------------------------------------------- - script Monsters -1,{ OnInit: OnNPCKillEvent: if ( strcharinfo(3) == "ordeal_1-2" ) { if( killedrid = 1110){ getitem 7773,1; } end; } } // Monsters ordeal_1-2,0,0 monster Fenix 1110,70 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 // Warps ordeal_1-2,130,193,0 warp testwrp#1 3,3,ordeal_1-2,154,154 ordeal_1-2,106,154,0 warp testwrp#2 3,3,ordeal_1-2,154,154 ordeal_1-2,201,129,0 warp testwrp#3 3,3,ordeal_1-2,154,154 ordeal_1-2,177,193,0 warp testwrp#4 3,3,ordeal_1-2,154,154 You forgot the TABS in the header. caspen,162,184,4 script Farm Zone 561,{ mes "Do you want to enter my Farm room?"; menu "Ok",-,"No thanks.",L_No; warp "ordeal_1-2",154,270; close; L_No: close; end; } // -------------------------------------------------------------- - script Monsters -1,{ OnInit: OnNPCKillEvent: if ( strcharinfo(3) == "ordeal_1-2" ) { if( killedrid = 1110){ getitem 7773,1; } end; } } // Monsters ordeal_1-2,0,0 monster Fenix 1110,70 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 // Warps ordeal_1-2,130,193,0 warp testwrp#1 3,3,ordeal_1-2,154,154 ordeal_1-2,106,154,0 warp testwrp#2 3,3,ordeal_1-2,154,154 ordeal_1-2,201,129,0 warp testwrp#3 3,3,ordeal_1-2,154,154 ordeal_1-2,177,193,0 warp testwrp#4 3,3,ordeal_1-2,154,154 Quote Link to comment Share on other sites More sharing options...
Cid Kagenou Posted July 26, 2014 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 107 Reputation: 5 Joined: 07/01/14 Last Seen: March 28 Author Share Posted July 26, 2014 (edited) still doesnt spawn monsters , only warps me Pneuma it showed up , but a few monsters , i wana double the spawn number Edited July 26, 2014 by spe3y Quote Link to comment Share on other sites More sharing options...
Radian Posted July 26, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted July 26, 2014 (edited) still doesnt spawn monsters , only warps me Pneuma it showed up , but a few monsters , i wana double the spawn number I think all you need to do is to change this line to your desired amount of mobs // Monsters ordeal_1-2,0,0 monster Fenix 1110,70 <== change 70 into your desired amount of mobs will spawn.. ( 1110 represent the ID# of monster ) and ( 70 represent how many mobs will pawn ) ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix 1110,100 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 ordeal_1-2,0,0 monster Fenix Guardian 1439,3 I'm not 100% but i know that's you do it... Edited July 26, 2014 by Ginji Quote Link to comment Share on other sites More sharing options...
Aoi Tokichiro Posted July 26, 2014 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 34 Reputation: 1 Joined: 12/17/11 Last Seen: December 8, 2014 Share Posted July 26, 2014 I test just fine, use TAB at header, monster set and warps, else it wouldn't works. Quote Link to comment Share on other sites More sharing options...
Question
Cid Kagenou
Hi Guys , i took a gold room script from the forum but it doesnt work ,
idk why , i copy paste everything just edited the script location
what i want from this script is warping players to "ordeal_1-2" and there is a lot of spawned dokebies
every monster should drop this item "7773" its a war badge . hope you guys help me with this
Here's the script :
caspen,162,184,4 script Farm Zone 561,{
mes "Do you want to enter my Farm room?";
menu "Ok",-,"No thanks.",L_No;
warp "ordeal_1-2",154,270;
close;
L_No:
close;
end;
}
// --------------------------------------------------------------
- script Monsters -1,{
OnInit:
OnNPCKillEvent:
if ( strcharinfo(3) == "ordeal_1-2" ) {
if( killedrid = 1110){
getitem 7773,1;
}
end;
}
}
// Monsters
ordeal_1-2,0,0 monster Fenix 1110,70
ordeal_1-2,0,0 monster Fenix 1110,100
ordeal_1-2,0,0 monster Fenix 1110,100
ordeal_1-2,0,0 monster Fenix 1110,100
ordeal_1-2,0,0 monster Fenix 1110,100
ordeal_1-2,0,0 monster Fenix 1110,100
ordeal_1-2,0,0 monster Fenix Guardian 1439,3
ordeal_1-2,0,0 monster Fenix Guardian 1439,3
// Warps
ordeal_1-2,130,193,0 warp testwrp#1 3,3,ordeal_1-2,154,154
ordeal_1-2,106,154,0 warp testwrp#2 3,3,ordeal_1-2,154,154
ordeal_1-2,201,129,0 warp testwrp#3 3,3,ordeal_1-2,154,154
ordeal_1-2,177,193,0 warp testwrp#4 3,3,ordeal_1-2,154,154
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.