Jump to content
  • 0

How to block Arrays?


miaodiao

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  07/20/24
  • Last Seen:  

Hello everyone, I have a question for you all(My English is so bad , this was translated through Deelp)

I made a script for a raffle. And set up the array:

setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;

If I already have 10003. how can I avoid drawing 10003 again in the next draw? is it possible that when I draw 10003 again it will be automatically replaced with 10005 for me。

Please help me. I've been thinking about it for a week.

 

lasagna,142,271,3	script	Homi	4_ep18_imril,{
	mes "[Homi]";
	mes "hello";
	next;
	menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj;
	
caihonghj:
	set .@i,rand(0,(getarraysize($@Chzhili)-1));
	if (countitem(12384) < 1){
		mes "[Homi]";
		mes "oh no!";
		close;
		end;
	}
	mes "[Homi]";
	mes "haha!";
	next;
	getitem $@Chzhili[.@i],1;
	mes "[Homi]";
	mes "you get"+getitemname($@Chzhili[.@i])+" x 1";
	close;
	end;
	
caihongfj:
	delitem 12384,1;
	getitem 12385,1;
	close;
	end;
	
OnInit:
	setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
	end;
}

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   19
  • Joined:  12/24/18
  • Last Seen:  

@miaodiao Try not tested

 

lasagna,142,271,3	script	Homi	4_ep18_imril,{
	mes "[Homi]";
	mes "hello";
	next;
	menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj;

caihonghj:
	set .@hasAll, 1;
	for (.@i = 0; .@i < getarraysize($@Chzhili); .@i++) {
		if (countitem($@Chzhili[.@i]) <= 0) {
			.@hasAll = 0;
			break;
		}
	}

	if (.@hasAll) {
		mes "[Homi]";
		mes "Sorry, you cannot draw anymore because you already have all the items!";
		close;
		end;
	}

	set .@i, rand(0, (getarraysize($@Chzhili) - 1));

	while (countitem($@Chzhili[.@i]) > 0) {
		.@i = rand(0, (getarraysize($@Chzhili) - 1));
	}

	if (countitem(12384) < 1) {
		mes "[Homi]";
		mes "oh no!";
		close;
		end;
	}
	
	mes "[Homi]";
	mes "haha!";
	next;
	getitem $@Chzhili[.@i], 1;
	mes "[Homi]";
	mes "you get "+getitemname($@Chzhili[.@i])+" x 1";
	close;
	end;

caihongfj:
	delitem 12384, 1;
	getitem 12385, 1;
	close;
	end;

OnInit:
	setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
	end;
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   19
  • Joined:  12/24/18
  • Last Seen:  

1 hour ago, miaodiao said:

Hello everyone, I have a question for you all(My English is so bad , this was translated through Deelp)

I made a script for a raffle. And set up the array:

setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;

If I already have 10003. how can I avoid drawing 10003 again in the next draw? is it possible that when I draw 10003 again it will be automatically replaced with 10005 for me。

Please help me. I've been thinking about it for a week.

 

lasagna,142,271,3	script	Homi	4_ep18_imril,{
	mes "[Homi]";
	mes "hello";
	next;
	menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj;
	
caihonghj:
	set .@i,rand(0,(getarraysize($@Chzhili)-1));
	if (countitem(12384) < 1){
		mes "[Homi]";
		mes "oh no!";
		close;
		end;
	}
	mes "[Homi]";
	mes "haha!";
	next;
	getitem $@Chzhili[.@i],1;
	mes "[Homi]";
	mes "you get"+getitemname($@Chzhili[.@i])+" x 1";
	close;
	end;
	
caihongfj:
	delitem 12384,1;
	getitem 12385,1;
	close;
	end;
	
OnInit:
	setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
	end;
}

 

 

Hello, do you mean that once you've drawn ID: 10003, you can't obtain it again, even if it's no longer in your inventory?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  07/20/24
  • Last Seen:  

17 minutes ago, Mice said:

 

您好,您的意思是一旦您抽到了 ID:10003,您就无法再次获得它,即使它不再在您的库存中?

The item cannot be stored in a warehouse, but it can be traded and sold to a store or a player, who can still get it by drawing.
If the item is inside the backpack, it cannot be drawn again to get it.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  07/20/24
  • Last Seen:  

45 minutes ago, Mice said:

@miaodiao Try not tested

 

lasagna,142,271,3	script	Homi	4_ep18_imril,{
	mes "[Homi]";
	mes "hello";
	next;
	menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj;

caihonghj:
	set .@hasAll, 1;
	for (.@i = 0; .@i < getarraysize($@Chzhili); .@i++) {
		if (countitem($@Chzhili[.@i]) <= 0) {
			.@hasAll = 0;
			break;
		}
	}

	if (.@hasAll) {
		mes "[Homi]";
		mes "Sorry, you cannot draw anymore because you already have all the items!";
		close;
		end;
	}

	set .@i, rand(0, (getarraysize($@Chzhili) - 1));

	while (countitem($@Chzhili[.@i]) > 0) {
		.@i = rand(0, (getarraysize($@Chzhili) - 1));
	}

	if (countitem(12384) < 1) {
		mes "[Homi]";
		mes "oh no!";
		close;
		end;
	}
	
	mes "[Homi]";
	mes "haha!";
	next;
	getitem $@Chzhili[.@i], 1;
	mes "[Homi]";
	mes "you get "+getitemname($@Chzhili[.@i])+" x 1";
	close;
	end;

caihongfj:
	delitem 12384, 1;
	getitem 12385, 1;
	close;
	end;

OnInit:
	setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
	end;
}

 

Thank you very much! I've tested it with no problems!
You are simply my idol! You've given me a way to move forward in the ocean!

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...