Jump to content
  • 0

About Gold Room


Fahhad

Question


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   5
  • Joined:  07/01/14
  • Last Seen:  

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

Edited by spe3y
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  846
  • Reputation:   136
  • Joined:  02/26/14
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   5
  • Joined:  07/01/14
  • Last Seen:  

still doesnt spawn monsters , only warps me

Pneuma

 

it showed up , but a few monsters , i wana double the spawn number

Edited by spe3y
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

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 by Ginji
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   1
  • Joined:  12/17/11
  • Last Seen:  

I test just fine, use TAB at header, monster set and warps, else it wouldn't works.

 

post-871-0-63930400-1406356643_thumb.jpg

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...