Jump to content
  • 0
kalabasa

Gold Room Capcha

Question

wassup!

can someone know where to insert this codes for goldroom

case 1:
	mes "[ ^C6A518Gold Room Assistant^000000 ]";
		mes "Sorry to disturb you,but I need to";
		mes "check if you're a bot.";
		mes "Please type the correct captcha:";
		mes "FEE: ^FF0000"+ F_InsertComma(.zeny) +" Zeny^000000";
		for ([email protected] = 0; [email protected] < .strLen; [email protected])
			[email protected]$ += charat(.charSet$, rand(0, getstrlen(.charSet$)));
		mes "Captcha: ^C6A518"+ [email protected]$ +"^000000";
		next;
		input [email protected]$;
		if ([email protected]$ != [email protected]$) {
			mes "You have not inputted Correct.";
			mes "Captcha";
			next;
			atcommand "@kick "+ strcharinfo(0);
			end;
		}
		if (Zeny < .zeny) {
			mes "Sorry, but you can't enter the room.";
			close;
		}
		Zeny -= .zeny;
		warp "ordeal_1-2",151,154;
		end;


OnInit:
	.charSet$ = "0123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ";
	.strLen = 4;		// Sets how many characters for the generated confirmation code.
	.zeny = 200000;		// Entrance FEE for the room
	end;

im currently using this goldroom 

https://github.com/deadlybrothers/script/blob/master/goldroom.txt

 

thank you!!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 1
2 hours ago, kalabasa said:

wassup!

can someone know where to insert this codes for goldroom

case 1:
	mes "[ ^C6A518Gold Room Assistant^000000 ]";
		mes "Sorry to disturb you,but I need to";
		mes "check if you're a bot.";
		mes "Please type the correct captcha:";
		mes "FEE: ^FF0000"+ F_InsertComma(.zeny) +" Zeny^000000";
		for ([email protected] = 0; [email protected] < .strLen; [email protected])
			[email protected]$ += charat(.charSet$, rand(0, getstrlen(.charSet$)));
		mes "Captcha: ^C6A518"+ [email protected]$ +"^000000";
		next;
		input [email protected]$;
		if ([email protected]$ != [email protected]$) {
			mes "You have not inputted Correct.";
			mes "Captcha";
			next;
			atcommand "@kick "+ strcharinfo(0);
			end;
		}
		if (Zeny < .zeny) {
			mes "Sorry, but you can't enter the room.";
			close;
		}
		Zeny -= .zeny;
		warp "ordeal_1-2",151,154;
		end;


OnInit:
	.charSet$ = "0123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ";
	.strLen = 4;		// Sets how many characters for the generated confirmation code.
	.zeny = 200000;		// Entrance FEE for the room
	end;

im currently using this goldroom 

https://github.com/deadlybrothers/script/blob/master/goldroom.txt

 

thank you!!

Try this script https://upaste.me/r/a04e54027f405c652

Edited by Radian
  • Upvote 2
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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.