Jump to content

Recommended Posts

Posted

Hi,

For my protocol block, the gui is 256x256. When I open it, the items in the top two rows of the inventory work fine. However, the bottom two rows will throw out an item if you click on any of the items in the slots. Is there a way to avoid this?

PS: I have identical code in other blocks without the expanded GUI, and they all work fine.

 

Thanks,

SkylordJoel

 

SOLUTION:

Have this as your constructor:

    public GUIWhatever(InventoryPlayer par1InventoryPlayer, TileEntityWhatever tile_entity) {

        super(new WhateverProtocol(par1InventoryPlayer, tile_entity));

        this.inventory = tile_entity;

       

        this.xSize = customSize;

        this.ySize = customSize;

    }

Posted

By the way this is 1.6.4 and some positions are not calculated yet:

package cr0s.WarpDrive.client.gui;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;

import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.util.ResourceLocation;

import org.lwjgl.input.Keyboard;
import org.lwjgl.opengl.GL11;

import uedevkit.gui.GuiSimpleBase;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import cr0s.WarpDrive.WarpDrive;
import cr0s.WarpDrive.WarpDriveConfig;
import cr0s.WarpDrive.client.ClientProxy;
import cr0s.WarpDrive.common.container.ContainerProtocol;
import cr0s.WarpDrive.tile.TileEntityProtocol;

@SideOnly(Side.CLIENT)
public class GUIProtocol extends GuiSimpleBase { 
	/*TODO
	 * List of stuff:
	 * dim_getP - done
	 * dim_setP - done
	 * dim_getN - done
	 * dim_setN - done
	 * setMode - done
	 * setDistance - done
	 * setDirection - done
	 * getAttachedPlayers - done
	 * summon
	 * summonAll - done
	 * getX - done
	 * getY - done
	 * getZ - done
	 * energyRemaining For Core
	 * doJump - done
	 * getShipSize - done
	 * setBeaconFrequency - unused
	 * getDx - done
	 * getDz - dome
	 * setCoreFrequency - more like ship name, done	
	 * isInSpace - done
	 * isInHyperspace - done
	 * setTargetJumpgate*/

	int xSize = 256;
	int ySize = 256;
   
	private static final ResourceLocation furnaceGuiTextures = new ResourceLocation(WarpDrive.modid + ":textures/gui/" + "guiWarpInterface_alternate.png");//ClientProxy.warpInterfaceGui/*"textures/gui/container/furnace.png"*/);
    private TileEntityProtocol furnaceInventory;
    
    private GuiTextField front;
    private GuiTextField back;
    private GuiTextField left;
    private GuiTextField right;
    private GuiTextField up;
    private GuiTextField down;
    
    private GuiTextField distance;
    
    private GuiTextField mode;
    
    private GuiTextField direction;
    
    private GuiTextField shipName;
    //private GuiTextField beaconInput; UNUSED
    
    private char[] allowedChars = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
    private char[] modeChars = { '0'/*jump/long jump*/, '1'/*To hyperspace*/, '2'/*jumpgate*//*, '3'/*jump to different dimensions*/ };
    private char[] directionChars = { '0'/*up*/, '1'/*down*/, '2'/*left*/, '3'/*right*/, '4'/*forward*/, '5'/*back*/ };

    public GUIProtocol(InventoryPlayer par1InventoryPlayer, TileEntityProtocol tile_entity) {
        super(new ContainerProtocol(par1InventoryPlayer, tile_entity));
        this.furnaceInventory = tile_entity;
    }
    
    int grey = 4210752;
    
    int sizex = -14;//10-24
    int sizey = -12;
    
    int dimensionx = -25;
    int dimensiony = 132;
    
    int blocksx;
    int blocksy;
    
    int coord0x;
    int coord0y;
    
    int pixelsPerWord = 10;
    
    String size0 = "Amount of blocks from Core to be moved: ";
    
    
    /**
     * Draw the foreground layer for the GuiContainer (everything in front of the items)
     */
    protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
        String s = this.furnaceInventory.isInvNameLocalized() ? this.furnaceInventory.getInvName() : I18n.getString(this.furnaceInventory.getInvName());
        this.fontRenderer.drawString(s, this.xSize / 2 - this.fontRenderer.getStringWidth(s) / 2, 6, 4210752);
        this.fontRenderer.drawString(I18n.getString("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
        
        String size1 = furnaceInventory.getFront() + ", Right: " + furnaceInventory.getRight() + ", Up: " + furnaceInventory.getUp();
	    String size2 = "Back: " + furnaceInventory.getBack() + ", Left: " + furnaceInventory.getLeft() + ", Down: " + furnaceInventory.getDown();

	    String dimension = furnaceInventory.currentDimension();
	    
	    String blocks = "Ship Size: " + String.valueOf(furnaceInventory.getShipSize());
	    
	    String coord0 = "Coordinates: ";
	    String coord1 = "X: " + String.valueOf(furnaceInventory.getCoreX());
	    String coord2 = "Y: " + String.valueOf(furnaceInventory.getCoreY());
	    String coord3 = "Z: " + String.valueOf(furnaceInventory.getCoreZ());
	    
	    String coord4 = "Destination Coordinates: ";
	    String coord5 = "X: " + String.valueOf(furnaceInventory.getDestX());
	    //String coord6 = "Y: " + String.valueOf(furnaceInventory.getDestY());
	    String coord7 = "Z: " + String.valueOf(furnaceInventory.getDestZ());
        
        write(size0, sizex, sizey, grey); //Title
        write(size1, sizex, sizey + pixelsPerWord, grey); //setP
        write(size2, sizex, sizey + (2 * pixelsPerWord), grey); //setN
        
        write(dimension, dimensionx, dimensiony, grey);
        
        write(coord0, coord0x, coord0y, grey);
        write(coord1, coord0x + pixelsPerWord, coord0y, grey);
        write(coord2, coord0x + 2 * (pixelsPerWord), coord0y, grey);
        write(coord3, coord0x + 3 * (pixelsPerWord), coord0y, grey);
        
        write(coord4, coord0x + 5 * (pixelsPerWord), coord0y, grey);
        write(coord5, coord0x + 6 * (pixelsPerWord), coord0y, grey);
        write(coord7, coord0x + 7 * (pixelsPerWord), coord0y, grey);
        
        write(blocks, blocksx, blocksy, grey);
        
        front.drawTextBox();
        back.drawTextBox();
        left.drawTextBox();
        right.drawTextBox();
        up.drawTextBox();
        down.drawTextBox();
        
        distance.drawTextBox();
        
        mode.drawTextBox();
        
        direction.drawTextBox();
        
        shipName.drawTextBox();
        
        //beaconInput.drawTextBox(); UNUSED
    }

    /**
     * Draw the background layer for the GuiContainer (everything behind the items)
     */
    protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) {
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.getTextureManager().bindTexture(furnaceGuiTextures);
        int k = (this.width - this.xSize) / 2;
        int l = (this.height - this.ySize) / 2;
        this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
        
        int i1;
        
        //FLAME - DON'T NEED
        /*if (this.furnaceInventory.isBurning())
        {
            i1 = this.furnaceInventory.getBurnTimeRemainingScaled(12);
            this.drawTexturedModalRect(k + 56, l + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 2);
        }*/
        
        //GIANT ARROW - DON'T NEED
        /*i1 = this.furnaceInventory.getCookProgressScaled(24);
        this.drawTexturedModalRect(k + 79, l + 34, 176, 14, i1 + 1, 16);*/
    }
    
    @Override
    public void initGui() {
    	super.initGui();
    	buttonList.clear();
    	
    	Keyboard.enableRepeatEvents(true);
	    
	    //int biX = 0; UNUSED
	    //int biY = 0; UNUSED
    	
	    int frontX = 0; //TODO
	    int frontY = 0;
	    
	    int diX = 0;
	    int diY = 0;
	    
	    int dirX = 0;
	    int dirY = 0;
	    
	    int moX = 0;
	    int moY = 0;
	    
	    int sNX = 58;
	    int sNY = -33;
	    
	    int inputLength = 30;
	    int inputWidth = 20;
	    
	    //applyBasicAttributes(beaconInput); UNUSED
	    
	    shipName = new GuiTextField(this.fontRenderer, sNX, sNY, inputLength * 2, inputWidth);
	    shipName.setMaxStringLength(10);
	    
	    direction = new GuiTextField(this.fontRenderer, dirX, dirY, inputLength, inputWidth);
	    direction.setMaxStringLength(1);
	    
	    mode = new GuiTextField(this.fontRenderer, moX, moY, inputLength, inputWidth);
	    mode.setMaxStringLength(1);

	    distance = new GuiTextField(this.fontRenderer, diX, diY, inputLength, inputWidth);
	    distance.setMaxStringLength(3);
	    
    	front = new GuiTextField(this.fontRenderer, frontX, frontY, inputLength, inputWidth);
    	front.setMaxStringLength(3);
    	
    	back = new GuiTextField(this.fontRenderer, frontX, frontY + pixelsPerWord, inputLength, inputWidth);
    	back.setMaxStringLength(3);
    	
    	left = new GuiTextField(this.fontRenderer, frontX, frontY + (2 * pixelsPerWord), inputLength, inputWidth);
    	left.setMaxStringLength(3);
    	
    	right = new GuiTextField(this.fontRenderer, frontX, frontY + (3 * pixelsPerWord), inputLength, inputWidth);
    	right.setMaxStringLength(3);
    	
    	up = new GuiTextField(this.fontRenderer, frontX, frontY + (4 * pixelsPerWord), inputLength, inputWidth);
    	up.setMaxStringLength(3);
    	
    	down = new GuiTextField(this.fontRenderer, frontX, frontY + (5 * pixelsPerWord), inputLength, inputWidth);
    	down.setMaxStringLength(3);
    	
	    applyBasicAttributes(front);
	    applyBasicAttributes(back);
	    applyBasicAttributes(right);
	    applyBasicAttributes(left);
	    applyBasicAttributes(up);
	    applyBasicAttributes(down);
	    
	    applyBasicAttributes(distance);
	    
	    applyBasicAttributes(mode);
	    
	    applyBasicAttributes(direction);
	    
	    applyBasicAttributes(shipName);
    	
    	//beaconInput = new GuiTextField(this.fontRenderer, biX, biY, inputLength, inputWidth); UNUSED
    	//beaconInput.setMaxStringLength(2); UNUSED
    	
    	/**/buttonList.add(new GuiButton(0/*button number, maybe for mod, else gui*/, guiLeft - 26/*Location in relation to left in pixels*/, guiTop + 177/*Location in relation to top in pixels*/, 30/*Length in pixels*/, 20/*Height in pixels*/, "Jump"/*Text on button*/));
    	/**/buttonList.add(new GuiButton(1/*button number, maybe for mod, else gui*/, guiLeft - 26/*Location in relation to left in pixels*/, guiTop + 157/*Location in relation to top in pixels*/, 60/*Length in pixels*/, 20/*Height in pixels*/, "Summon All"/*Text on button*/));
    	buttonList.add(new GuiButton(2, guiLeft + 4/*217: -40*/, guiTop + 177/*227: -45*/, 30, 20, "Wiki"));
    }
    
    public void applyBasicAttributes(GuiTextField field) {
    	//if(field != null) {
	    	field.setEnableBackgroundDrawing(true);
	    	field.setFocused(false);
	    	field.setCanLoseFocus(true);
    	//}
	}

	@Override
    protected void keyTyped(char par1, int par2) {
		if(anyTextBoxFocused()) {
			if(par1 != 27) {
				if(shipName.textboxKeyTyped(par1, par2)) {
					shipName();
				}

				if(isValidChar(par1)) {
			//super.keyTyped(par1, par2);
					if(front.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_F", this.front, 4);
					} else if(back.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_B", this.back, 4);
					} else if(left.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_L", this.left, 4);
					} else if(right.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_R", this.right, 4);
					} else if(up.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_U", this.up, 4);
					} else if(down.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_D", this.down, 4);
					} else if(distance.textboxKeyTyped(par1, par2)) {
						simpleTextPacket("WarpDrive_Dis", this.distance, 4);
					} else if(isValidModeChar(par1)) {
						if(mode.textboxKeyTyped(par1, par2)) {
							modeTextPacket("WarpDrive_M", this.mode, 4);
						} else if(isValidDirectionChar(par1)) {
							if(direction.textboxKeyTyped(par1, par2)) {
								directionTextPacket("WarpDrive_Dir", this.direction, 4);
							}
						}
			//} else if(beaconInput.textboxKeyTyped(par1, par2)) {UNUSED
				//simpleTextPacket("WarpDrive_Protocol", this.beaconInput.getText().getBytes())); UNUSED
					}
				} else {
					super.keyTyped(par1, par2);
				}
			}
		} else if (par1 == 27) {
			mc.thePlayer.closeScreen();
		}
	}

    public boolean anyTextBoxFocused() {
		return front.isFocused() || back.isFocused() || left.isFocused() || right.isFocused() || up.isFocused() || down.isFocused() || distance.isFocused() || mode.isFocused() || direction.isFocused() || shipName.isFocused();
	}

	public void shipName() {
		ByteArrayOutputStream bos = new ByteArrayOutputStream(shipName.getText().length());
		DataOutputStream output = new DataOutputStream(bos);

		try {
			String f = shipName.getText();

			output.writeUTF(f);
		} catch(Exception e) {
			e.printStackTrace();
		}

		Packet250CustomPayload packet = new Packet250CustomPayload();
		packet.channel = "WarpDrive_SN";
		packet.data = bos.toByteArray();
		packet.length = bos.size();

		this.mc.thePlayer.sendQueue.addToSendQueue(packet);
	}

	public void directionTextPacket(String channel, GuiTextField field, int bytes) {
		ByteArrayOutputStream bos = new ByteArrayOutputStream(bytes);
		DataOutputStream output = new DataOutputStream(bos);

		try {
			String f = field.getText();
			int fI = Integer.parseInt(f);

			output.writeInt(fI);
		} catch(Exception e) {
			e.printStackTrace();
		}

		Packet250CustomPayload packet = new Packet250CustomPayload();
		packet.channel = channel;
		packet.data = bos.toByteArray();
		packet.length = bos.size();

		this.mc.thePlayer.sendQueue.addToSendQueue(packet);
	}

	private boolean isValidDirectionChar(char par1) {
    	for(int x = 0; x <= this.directionChars.length; x++) {
    		if(par1 == this.directionChars[x]) {
    			return true;
    		}
    	}
		return false;
	}

	private boolean isValidModeChar(char par1) {
    	for(int x = 0; x <= this.modeChars.length; x++) {
    		if(par1 == this.modeChars[x]) {
    			return true;
    		}
    	}
    	return false;
    }

	public void modeTextPacket(String channel, GuiTextField field, int lengthOfBytesInField) {
		ByteArrayOutputStream bos = new ByteArrayOutputStream(lengthOfBytesInField);
		DataOutputStream output = new DataOutputStream(bos);

		try {
			String f = field.getText();
			int fI = Integer.parseInt(f);

			output.writeInt(fI);
		} catch(Exception e) {
			e.printStackTrace();
		}

		Packet250CustomPayload packet = new Packet250CustomPayload();
		packet.channel = channel;
		packet.data = bos.toByteArray();
		packet.length = bos.size();

		this.mc.thePlayer.sendQueue.addToSendQueue(packet);
	}

	public void simpleTextPacket(String channel, GuiTextField field, int lengthOfBytesInField) {
		ByteArrayOutputStream bos = new ByteArrayOutputStream(lengthOfBytesInField);
		DataOutputStream output = new DataOutputStream(bos);

		try {
			String f = field.getText();
			int fI = Integer.parseInt(f);

			output.writeInt(fI);
		} catch(Exception e) {
			e.printStackTrace();
		}

		Packet250CustomPayload packet = new Packet250CustomPayload();
		packet.channel = channel;
		packet.data = bos.toByteArray();
		packet.length = bos.size();

		this.mc.thePlayer.sendQueue.addToSendQueue(packet);
	}

	@Override
    protected void mouseClicked(int x, int y, int buttonClicked) {
    	super.mouseClicked(x, y, buttonClicked);
    	
    	this.front.mouseClicked(x, y, buttonClicked);
    	this.back.mouseClicked(x, y, buttonClicked);
    	this.left.mouseClicked(x, y, buttonClicked);
    	this.right.mouseClicked(x, y, buttonClicked);
    	this.up.mouseClicked(x, y, buttonClicked);
    	this.down.mouseClicked(x, y, buttonClicked);
    	
    	this.distance.mouseClicked(x, y, buttonClicked);
    	
    	this.mode.mouseClicked(x, y, buttonClicked);
    	
    	this.direction.mouseClicked(x, y, buttonClicked);
    	
    	this.shipName.mouseClicked(x, y, buttonClicked);
    	
    	//this.beaconInput.mouseClicked(x, y, buttonClicked); UNUSED
    }
    
    private boolean isValidChar(char par1) {
    	for(int x = 0; x <= this.allowedChars.length; x++) {
    		if(par1 == this.allowedChars[x]) {
    			return true;
    		}
    	}
    	return false;
    }
    
    @Override
    public void updateScreen() {
    	this.front.updateCursorCounter();
    	this.back.updateCursorCounter();
    	this.left.updateCursorCounter();
    	this.right.updateCursorCounter();
    	this.up.updateCursorCounter();
    	this.down.updateCursorCounter();
    	
    	this.distance.updateCursorCounter();
    	
    	this.mode.updateCursorCounter();
    	
    	this.direction.updateCursorCounter();
    	
    	this.shipName.updateCursorCounter();
    	
    	//this.beaconInput.updateCursorCounter(); UNUSED
    }
    
    @Override
    protected void actionPerformed(GuiButton button) {
    	switch(button.id) {
    		case 0:
    			furnaceInventory.doJump();
    			System.out.println(furnaceInventory.getCoreFrequency() + " jumped from coordinates " + String.valueOf(furnaceInventory.getCoreX()) + ", " + String.valueOf(furnaceInventory.getCoreY()) + ", " + String.valueOf(furnaceInventory.getCoreZ()));
    			break;
    		case 1:
    			furnaceInventory.setSummonAllFlag(true);
    			break;
    			//System.out.println("Clicked!");//ACTION PERFORMED ON BUTTON CLICK
    		case 2:
    			openURL("https://sites.google.com/site/spaceageminecraft/wiki/blocks/warp-interface");
    	}
    }
    
    @Override
    public void onGuiClosed() {
    	super.onGuiClosed();
    	Keyboard.enableRepeatEvents(false);
    }
    
    @Override
    public void drawScreen(int par1, int par2, float par3) {
    	super.drawScreen(par1, par2, par3);
    	this.front.drawTextBox();
    	this.back.drawTextBox();
    	this.left.drawTextBox();
    	this.right.drawTextBox();
    	this.up.drawTextBox();
    	this.down.drawTextBox();
    	
    	this.distance.drawTextBox();
    	
    	this.mode.drawTextBox();
    	
    	this.direction.drawTextBox();
    	
    	this.shipName.drawTextBox();
    }
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • But your Launcher does not find it   Java path is: /run/user/1000/doc/3f910b8/java Checking Java version... Java checker returned some invalid data we don't understand: Check the Azul Zulu site and select your OS and download the latest Java 8 build for Linux https://www.azul.com/downloads/?version=java-8-lts&package=jre#zulu After installation, check the path and put this path into your Launcher Java settings (Java Executable)
    • Try other builds of pehkui and origins++ until you find a working combination
    • Some Create addons are only compatible with Create 6 or Create 5 - so not both versions at the same time Try older builds of Create Stuff and Additions This is the last build before the Create 6 update: https://www.curseforge.com/minecraft/mc-mods/create-stuff-additions/files/6168370
    • ✅ Crobo Coupon Code: 51k3b0je — Get Your \$25 Amazon Gift Card Bonus! If you’re new to Crobo and want to make the most out of your first transaction, you’ve come to the right place. The **Crobo coupon code: 51k3b0je** is a fantastic way to get started. By using this code, you can unlock an exclusive **\$25 Amazon gift card** after completing your first eligible transfer. Let’s dive deep into how the **Crobo coupon code: 51k3b0je** works, why you should use it, and how to claim your reward. --- 🌟 What is Crobo? Crobo is a trusted, modern platform designed for **international money transfers**. It offers fast, secure, and low-cost transactions, making it a favorite choice for individuals and businesses alike. Crobo is committed to transparency, low fees, and competitive exchange rates. And with promo deals like the **Crobo coupon code: 51k3b0je**, it becomes even more attractive. Crobo focuses on providing customers with: * Quick transfer speeds * Minimal fees * Safe, encrypted transactions * Great referral and promo code rewards When you choose Crobo, you’re choosing a platform that values your time, money, and loyalty. And now with the **Crobo coupon code: 51k3b0je**, you can start your Crobo journey with a **bonus reward**! ---# 💥 What is the Crobo Coupon Code: 51k3b0je? The **Crobo coupon code: 51k3b0je** is a **special promotional code** designed for new users. By entering this code during signup, you’ll be eligible for: ✅ A **\$25 Amazon gift card** after your first qualifying transfer. ✅ Access to Crobo’s referral system to earn more rewards. ✅ The ability to combine with future seasonal Crobo discounts. Unlike generic promo codes that just offer small fee reductions, the **Crobo coupon code: 51k3b0je** directly gives you a tangible, valuable reward — perfect for online shopping or gifting. --- ### 🎯 Why Use Crobo Coupon Code: 51k3b0je? There are many reasons why users choose to apply the **Crobo coupon code: 51k3b0je**: 🌟 **Free bonus reward** — Your first transfer can instantly earn you a \$25 Amazon gift card. 🌟 **Trusted platform** — Crobo is known for secure, fast, and affordable transfers. 🌟 **Easy to apply** — Simply enter **Crobo coupon code: 51k3b0je** at signup — no complicated steps. 🌟 **Referral opportunities** — Once you’ve used **Crobo coupon code: 51k3b0je**, you can invite friends and earn more rewards. 🌟 **Stackable savings** — Pair **Crobo coupon code: 51k3b0je** with Crobo’s ongoing offers or holiday deals for even more benefits. --- ### 📝 How to Use Crobo Coupon Code: 51k3b0je Getting started with **Crobo coupon code: 51k3b0je** is quick and easy. Just follow these steps: 1️⃣ **Download the Crobo app** (available on Google Play Store and Apple App Store) or visit the official Crobo website. 2️⃣ **Start the sign-up process** by entering your basic details (name, email, phone number, etc.). 3️⃣ When prompted, enter **Crobo coupon code: 51k3b0je** in the promo code or coupon code field. 4️⃣ Complete your first transaction — be sure to meet the minimum amount required to qualify for the reward (usually specified in Crobo’s promo terms). 5️⃣ After the transaction is verified, receive your **\$25 Amazon gift card** directly via email or within your Crobo account. --- ### 💡 Tips to Maximize Your Crobo Coupon Code: 51k3b0je Bonus 👉 **Transfer the minimum qualifying amount or more** — this ensures you meet the conditions for the gift card. 👉 **Refer friends after your signup** — Crobo allows users who’ve signed up with codes like **Crobo coupon code: 51k3b0je** to share their own code for extra bonuses. 👉 **Check for additional Crobo promotions** — sometimes Crobo offers seasonal or regional deals that stack with the coupon code. 👉 **Complete your transaction soon after signup** — many bonuses have time limits, so act quickly! --- ### 🚀 Frequently Asked Questions about Crobo Coupon Code: 51k3b0je **Q: Can I use Crobo coupon code: 51k3b0je if I already have a Crobo account?** A: No — the **Crobo coupon code: 51k3b0je** is intended for **new users only**. It must be applied during the initial registration process. --- **Q: How long does it take to get the \$25 Amazon gift card after using Crobo coupon code: 51k3b0je?** A: Typically, the gift card is sent **within a few business days** after your first qualifying transfer is completed and verified. --- **Q: Are there hidden fees when using Crobo coupon code: 51k3b0je?** A: No — Crobo is transparent about its fees. The **Crobo coupon code: 51k3b0je** simply adds a bonus reward without increasing your costs. --- **Q: Can I combine Crobo coupon code: 51k3b0je with other promo codes?** A: The **Crobo coupon code: 51k3b0je** is generally applied as a standalone signup bonus. However, Crobo often offers **ongoing promotions** that may apply to future transactions. ---  📌 Reference Crobo promo code: {51k3b0je} Crobo discount code: {51k3b0je} --- # 🌍 Final Thoughts If you want to enjoy safe, fast, and affordable money transfers with an added bonus, **Crobo coupon code: 51k3b0je** is your best option. Not only will you experience excellent service, but you’ll also earn a **\$25 Amazon gift card** — a reward that you can use immediately for shopping or gifts. 👉 **Don’t wait — sign up today using Crobo coupon code: 51k3b0je and claim your bonus!**
  • Topics

×
×
  • Create New...

Important Information

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