安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






Game():GetItemPool():GetCard(
sacrificeRng:Next(),
true,
true,
false),
Game():GetRoom():FindFreePickupSpawnPosition(CurrentPlayer.Position + Vector(-50, 50)),
Vector(0,0),
nil)
Isaac.Spawn(EntityType.ENTITY_PICKUP, PickupVariant.PICKUP_TAROTCARD,
Game():GetItemPool():GetCard(
sacrificeRng:Next(),
true,
true,
false),
Game():GetRoom():FindFreePickupSpawnPosition(CurrentPlayer.Position + Vector(50, 50)),
Vector(0,0),
nil)
```
Now with 100% more randomness!
(2/2)
```
local sacrificeRng = CurrentPlayer:GetCollectibleRNG(items.Sacrifice);
Isaac.Spawn(EntityType.ENTITY_PICKUP, PickupVariant.PICKUP_COLLECTIBLE,
Game():GetItemPool():GetCollectible(
Game():GetItemPool():GetPoolForRoom(Game():GetRoom():GetType(), 0),
true,
sacrificeRng:Next()
),
Game():GetRoom():FindFreePickupSpawnPosition(CurrentPlayer.Position + Vector(0, 50)),
Vector(0,0),
nil)
(1/2)
```
Game():GetItemPool():GetCard(
CurrentPlayer:GetCollectibleRNG(items.Sacrifice):RandomInt(999),
true,
true,
false),
```
We roll a very low int... only to put it to the Seed param. We likely need to use RNG:Next() here. That one returns proper seed for GetCard use.
Also
```
Isaac.Spawn(EntityType.ENTITY_PICKUP, PickupVariant.PICKUP_COLLECTIBLE,
Game():GetItemPool():GetCollectible(
Game():GetItemPool():GetPoolForRoom(Game():GetRoom():GetType(), 0),
true,
CurrentPlayer:GetCollectibleRNG(items.Sacrifice):Next():RandomInt(999)
),
Game():GetRoom():FindFreePickupSpawnPosition(CurrentPlayer.Position + Vector(0, 50)),
Vector(0,0),
nil)
```
Isn't this `CurrentPlayer:GetCollectibleRNG(items.Sacrifice):Next():RandomInt(999)` kinda redundant? Since what you want here is already handled by entity `5.100.0`?
The items themselves are fine.
this will help me with the arg
I use that