ARK · ITEM

Industrial Grill
- Item
- Base Game
A deployable cooking structure that grills meat and fish into cooked variants; place it on a foundation and fuel it with wood or charcoal.
The Industrial Grill is just the start. Join the GameServersHub Discord for the full playbook on running your server. As of .
Blueprint Path
Full blueprint path
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_Grill.PrimalItemStructure_Grill'"Spawn Commands
GFI Code
cheat gfi PrimalItemStructure_Grill 1 0 0GiveItemNum
cheat GiveItemNum 356 1 0 0About
The Industrial Grill is a large cooking station used to convert raw meat into cooked meat and raw fish into cooked fish. Unlike the smaller Cooking Pot, it processes food in bulk and takes up significant floor space, making it the standard choice for feeding large tribes or establishing a central cook station on your base.
Place the grill on a foundation, load raw meat or fish into its inventory, and feed it wood or charcoal as fuel. The cooking process runs automatically while fuel is available. It has no special quality tiers or blueprint variants, you place the finished structure directly.
Frequently Asked Questions
- What do the numbers in the Industrial Grill spawn command mean?
- In
cheat gfi PrimalItemStructure_Grill 1 0 0, the code identifies the Industrial Grill, then the three numbers are quantity, quality, and blueprint flag (0 = item, 1 = blueprint). So it spawns one standard Industrial Grill. - What's the Industrial Grill class name?
- The class name for the Industrial Grill is
PrimalItemStructure_Grill_C. Class names end in_Cand identify the item's blueprint at runtime, which makes them useful for spawn tools, mods, and RCON macros. - How do I spawn the Industrial Grill as a blueprint instead of a finished item?
- Set the final argument to 1:
cheat gfi PrimalItemStructure_Grill 1 0 1. The last number is the blueprint flag, where 0 gives the crafted item and 1 gives its blueprint (for craftable items; on items with no blueprint the flag is simply ignored). - Can I get the Industrial Grill without spawning it?
- Yes. The Industrial Grill can also be obtained through normal ARK: Survival Ascended progression. Admins usually spawn it for speed when testing, running events, or outfitting players, which is what the commands on this page are for.
- How do I spawn multiple Industrial Grill at once?
- Change the quantity argument, the first number after the code. For example
cheat gfi PrimalItemStructure_Grill 25 0 0spawns 25 of the Industrial Grill. Stacks respect the item's maximum stack size. - Is the Industrial Grill blueprint path case-sensitive?
- Yes.
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_Grill.PrimalItemStructure_Grill'"must be typed exactly, including capitalization and the wrapping quotes. Copy it from this page to avoid a typo that returns an empty spawn. - What is the admin command to spawn the Industrial Grill?
- Open the admin console and run
cheat gfi PrimalItemStructure_Grill 1 0 0. That gives you one Industrial Grill instantly. The three numbers after the code are quantity, quality, and blueprint flag. Raise the first to spawn a stack, or set the last to 1 to receive it as a blueprint instead of a finished item. Verified against the current ARK: ASA build as of June 28, 2026. - What's the difference between the Industrial Grill GFI code and its blueprint path?
- The GFI code
PrimalItemStructure_Grillis a short name for quick spawning; the blueprint path"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_Grill.PrimalItemStructure_Grill'"is the full engine reference used by GiveItem and spawn tools. Both point at the same Industrial Grill. - How do I add the Industrial Grill to a starter kit or loadout?
- Include
cheat gfi PrimalItemStructure_Grill 1 0 0in your server's kit or spawn script, and set the quantity argument to hand out multiples. Pair it with other item commands from the Codex to build a full loadout. - How do I spawn the Industrial Grill by its item ID?
- Run
cheat GiveItemNum 356 1 0 0in the admin console. GiveItemNum spawns by numeric ID, which is precise for scripts and control panels. The trailing numbers are quantity, quality, and blueprint flag. - Can I spawn the Industrial Grill over RCON or on a dedicated server?
- Yes. Send the same command through RCON or your control-panel console:
cheat gfi PrimalItemStructure_Grill 1 0 0. If your tool already runs with admin context, drop the leading "cheat". It works the same on hosted, self-hosted, and RCON setups. - What's the numeric item ID of the Industrial Grill?
- The numeric item ID for the Industrial Grill is
356. Use it with GiveItemNum,cheat GiveItemNum 356 1 0 0, to spawn by ID instead of by GFI name. - How do I give the Industrial Grill to another player?
- Look at the player and run
cheat GiveItemToPlayer <PlayerID> 356 1 0 0, or stand near them and usecheat GiveItemNum 356 1 0 0after selecting them in your admin tools. It's the quick way to hand out the Industrial Grill during events and giveaways. - Does the Industrial Grill spawn command work in single-player and multiplayer?
- Yes, the command is identical in both. Single-player has cheats enabled by default; multiplayer just requires an admin login first. The Industrial Grill then spawns the same way.
- What is the Industrial Grill used for?
- The Industrial Grill is a large cooking station used to convert raw meat into cooked meat and raw fish into cooked fish. Unlike the smaller Cooking Pot, it processes food in bulk and takes up significant floor space, making it the standard choice for feeding large tribes or establishing a central cook station on your base.
- How do I enable admin commands to spawn the Industrial Grill?
- In single-player, cheats are on by default. On a dedicated or hosted server, log in as admin first with
enablecheats <AdminPassword>, then run the Industrial Grill spawn command. Without admin access the console rejects it. - Where can I copy the Industrial Grill spawn command?
- Use the copy buttons in the Spawn Commands and Blueprint Path sections near the top of this page. Each copies the full Industrial Grill command to your clipboard in one click, ready to paste into the console.
- What is the Industrial Grill?
- A deployable cooking structure that grills meat and fish into cooked variants; place it on a foundation and fuel it with wood or charcoal.
- What is the Industrial Grill class used for in mods or spawn tools?
- Spawn managers, loot-table editors, and RCON macros reference the Industrial Grill by its class
PrimalItemStructure_Grill_Cor GFIPrimalItemStructure_Grill. Both uniquely identify it in ARK: Survival Ascended. - What items are related to the Industrial Grill?
- See the Related section at the bottom of this page for items commonly used alongside the Industrial Grill, or open Browse Games to explore the full ARK: Survival Ascended database.
- How current is the Industrial Grill spawn info?
- The Industrial Grill entry was last verified on GameServersCodex on June 28, 2026. We track the live ARK: ASA build, so the IDs and commands here reflect the current patch.
- What's the difference between GFI and GiveItemNum for the Industrial Grill?
- Both spawn the Industrial Grill.
gfi PrimalItemStructure_Grillmatches the item by name and is quickest to type;GiveItemNum 356uses the numeric ID and is precise for scripting. Same result, different lookup. - How do I spawn a higher-quality Industrial Grill?
- The second number is quality, where 0 is primitive and higher values roll toward ascendant.
cheat gfi PrimalItemStructure_Grill 1 100 0attempts a top tier Industrial Grill. Quality only affects items that support tiers; on others it's ignored. - Is the Industrial Grill spawn code on GameServersCodex accurate?
- Yes. The Industrial Grill's class name, GFI code, item ID, and blueprint path are reproduced exactly from the live game data and re-checked each patch, so you can copy them straight into your console.
- Why isn't my Industrial Grill spawn command working?
- Check three things: admin access is enabled (
enablecheatson servers), the code is typed exactly (PrimalItemStructure_Grill), and all three trailing numbers are present. Copyingcheat gfi PrimalItemStructure_Grill 1 0 0directly from this page avoids the most common mistakes. - How do I open the console to spawn the Industrial Grill?
- On PC, press Tab to open the admin console, paste the command, and press Enter. On Xbox and PlayStation, open the pause menu and use the on-screen command bar. Then drop in the Industrial Grill spawn code from this page.
- What is the blueprint path for the Industrial Grill?
- The full blueprint path is
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_Grill.PrimalItemStructure_Grill'". Paste it into GiveItem to spawn the exact item:cheat GiveItem "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/PrimalItemStructure_Grill.PrimalItemStructure_Grill'" 1 0 0. Copy it exactly, because the path is case sensitive and must keep its wrapping quotes. - Which game is the Industrial Grill from?
- The Industrial Grill is from ARK: Survival Ascended. Every ID, code, and command on this page is specific to ARK: Survival Ascended and its current live build.
- What's the Industrial Grill GFI short code?
- The GFI code for the Industrial Grill is
PrimalItemStructure_Grill. GFI matches the item by its short blueprint name, socheat gfi PrimalItemStructure_Grill 1 0 0is the fastest way to spawn it without typing the full blueprint path. - Is the Industrial Grill a DLC item or part of the base game?
- The Industrial Grill is part of the base ARK: Survival Ascended game, so no DLC or map pack is required to spawn or craft it.