Jump to content

Make mob move faster without new AI?


Catfish55

Recommended Posts

So, the line:

this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(value);

doesn't seem to change anything unless the new AI is enabled. However, with new AI enabled, it really messes with some of the things I've added. Is there a good way to make it move faster otherwise

 

 

I've tried doing all sorts of adjustments of movement speed in the onLivingUpdate tick.

Link to comment
Share on other sites

I've always used the new AI so never really looked at this before.  However, looking at it quickly it seems that you probably need to look at overriding at the following:

 

In your entity class, maybe Override the getAISpeed() method.  In the EntityLivingBase class, the method is defined as:

    public float getAIMoveSpeed()
    {
        return this.isAIEnabled() ? this.landMovementFactor : 0.1F;
    }

 

So just change that 0.1F to what you want.  Not sure but that might do it.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

I've always used the new AI so never really looked at this before.  However, looking at it quickly it seems that you probably need to look at overriding at the following:

 

In your entity class, maybe Override the getAISpeed() method.  In the EntityLivingBase class, the method is defined as:

    public float getAIMoveSpeed()
    {
        return this.isAIEnabled() ? this.landMovementFactor : 0.1F;
    }

 

So just change that 0.1F to what you want.  Not sure but that might do it.

Modified what you suggested a little bit and it work now, except when they go in water. I removed the this.landMovementFactor because it wasn't a variable that was recognized.

 

Also, the problem with new AI is it seems to cause my mobs to randomly lose aggro on the player, and when I adjust the movement speed they don't face the way they are running.

Link to comment
Share on other sites

When they are swimming, they call a method called moveFlying() ("flying" is used for both swimming and flying because it means gravity is active on entity) which is called by moveEntityWithHeading().  In that method it also checks for the isAIEnabled() so you have to override that one as well.  This is what the current class looks like:

 

    public void moveEntityWithHeading(float par1, float par2)

    {

        double d0;

 

        if (this.isInWater() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, this.isAIEnabled() ? 0.04F : 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.800000011920929D;

            this.motionY *= 0.800000011920929D;

            this.motionZ *= 0.800000011920929D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else if (this.handleLavaMovement() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.5D;

            this.motionY *= 0.5D;

            this.motionZ *= 0.5D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else

        {

            float f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            float f3 = 0.16277136F / (f2 * f2 * f2);

            float f4;

 

            if (this.onGround)

            {

                f4 = this.getAIMoveSpeed() * f3;

            }

            else

            {

                f4 = this.jumpMovementFactor;

            }

 

            this.moveFlying(par1, par2, f4);

            f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            if (this.isOnLadder())

            {

                float f5 = 0.15F;

 

                if (this.motionX < (double)(-f5))

                {

                    this.motionX = (double)(-f5);

                }

 

                if (this.motionX > (double)f5)

                {

                    this.motionX = (double)f5;

                }

 

                if (this.motionZ < (double)(-f5))

                {

                    this.motionZ = (double)(-f5);

                }

 

                if (this.motionZ > (double)f5)

                {

                    this.motionZ = (double)f5;

                }

 

                this.fallDistance = 0.0F;

 

                if (this.motionY < -0.15D)

                {

                    this.motionY = -0.15D;

                }

 

                boolean flag = this.isSneaking() && this instanceof EntityPlayer;

 

                if (flag && this.motionY < 0.0D)

                {

                    this.motionY = 0.0D;

                }

            }

 

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

 

            if (this.isCollidedHorizontally && this.isOnLadder())

            {

                this.motionY = 0.2D;

            }

 

            if (this.worldObj.isRemote && (!this.worldObj.blockExists((int)this.posX, 0, (int)this.posZ) || !this.worldObj.getChunkFromBlockCoords((int)this.posX, (int)this.posZ).isChunkLoaded))

            {

                if (this.posY > 0.0D)

                {

                    this.motionY = -0.1D;

                }

                else

                {

                    this.motionY = 0.0D;

                }

            }

            else

            {

                this.motionY -= 0.08D;

            }

 

            this.motionY *= 0.9800000190734863D;

            this.motionX *= (double)f2;

            this.motionZ *= (double)f2;

        }

 

        this.prevLimbSwingAmount = this.limbSwingAmount;

        d0 = this.posX - this.prevPosX;

        double d1 = this.posZ - this.prevPosZ;

        float f6 = MathHelper.sqrt_double(d0 * d0 + d1 * d1) * 4.0F;

 

        if (f6 > 1.0F)

        {

            f6 = 1.0F;

        }

 

        this.limbSwingAmount += (f6 - this.limbSwingAmount) * 0.4F;

        this.limbSwing += this.limbSwingAmount;

    }

 

 

So you need to override the whole method and change the line near the top where it checks if isAIEnabled().

 

Regarding the rest of your comments about AI, I'm in the process of writing a tutorial on it.  There are a couple of tricks related to how you disable AI when other AI is running (the setMutexBits() method is used but it is a little tricky without explanation) as well as the priority order you have the task list.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

When they are swimming, they call a method called moveFlying() ("flying" is used for both swimming and flying because it means gravity is active on entity) which is called by moveEntityWithHeading().  In that method it also checks for the isAIEnabled() so you have to override that one as well.  This is what the current class looks like:

 

    public void moveEntityWithHeading(float par1, float par2)

    {

        double d0;

 

        if (this.isInWater() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, this.isAIEnabled() ? 0.04F : 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.800000011920929D;

            this.motionY *= 0.800000011920929D;

            this.motionZ *= 0.800000011920929D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else if (this.handleLavaMovement() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.5D;

            this.motionY *= 0.5D;

            this.motionZ *= 0.5D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else

        {

            float f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            float f3 = 0.16277136F / (f2 * f2 * f2);

            float f4;

 

            if (this.onGround)

            {

                f4 = this.getAIMoveSpeed() * f3;

            }

            else

            {

                f4 = this.jumpMovementFactor;

            }

 

            this.moveFlying(par1, par2, f4);

            f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            if (this.isOnLadder())

            {

                float f5 = 0.15F;

 

                if (this.motionX < (double)(-f5))

                {

                    this.motionX = (double)(-f5);

                }

 

                if (this.motionX > (double)f5)

                {

                    this.motionX = (double)f5;

                }

 

                if (this.motionZ < (double)(-f5))

                {

                    this.motionZ = (double)(-f5);

                }

 

                if (this.motionZ > (double)f5)

                {

                    this.motionZ = (double)f5;

                }

 

                this.fallDistance = 0.0F;

 

                if (this.motionY < -0.15D)

                {

                    this.motionY = -0.15D;

                }

 

                boolean flag = this.isSneaking() && this instanceof EntityPlayer;

 

                if (flag && this.motionY < 0.0D)

                {

                    this.motionY = 0.0D;

                }

            }

 

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

 

            if (this.isCollidedHorizontally && this.isOnLadder())

            {

                this.motionY = 0.2D;

            }

 

            if (this.worldObj.isRemote && (!this.worldObj.blockExists((int)this.posX, 0, (int)this.posZ) || !this.worldObj.getChunkFromBlockCoords((int)this.posX, (int)this.posZ).isChunkLoaded))

            {

                if (this.posY > 0.0D)

                {

                    this.motionY = -0.1D;

                }

                else

                {

                    this.motionY = 0.0D;

                }

            }

            else

            {

                this.motionY -= 0.08D;

            }

 

            this.motionY *= 0.9800000190734863D;

            this.motionX *= (double)f2;

            this.motionZ *= (double)f2;

        }

 

        this.prevLimbSwingAmount = this.limbSwingAmount;

        d0 = this.posX - this.prevPosX;

        double d1 = this.posZ - this.prevPosZ;

        float f6 = MathHelper.sqrt_double(d0 * d0 + d1 * d1) * 4.0F;

 

        if (f6 > 1.0F)

        {

            f6 = 1.0F;

        }

 

        this.limbSwingAmount += (f6 - this.limbSwingAmount) * 0.4F;

        this.limbSwing += this.limbSwingAmount;

    }

 

 

So you need to override the whole method and change the line near the top where it checks if isAIEnabled().

 

Regarding the rest of your comments about AI, I'm in the process of writing a tutorial on it.  There are a couple of tricks related to how you disable AI when other AI is running (the setMutexBits() method is used but it is a little tricky without explanation) as well as the priority order you have the task list.

How do you adjust the priorities on the task list? Also, it worked, thanks!

Link to comment
Share on other sites

When they are swimming, they call a method called moveFlying() ("flying" is used for both swimming and flying because it means gravity is active on entity) which is called by moveEntityWithHeading().  In that method it also checks for the isAIEnabled() so you have to override that one as well.  This is what the current class looks like:

 

    public void moveEntityWithHeading(float par1, float par2)

    {

        double d0;

 

        if (this.isInWater() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, this.isAIEnabled() ? 0.04F : 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.800000011920929D;

            this.motionY *= 0.800000011920929D;

            this.motionZ *= 0.800000011920929D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else if (this.handleLavaMovement() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))

        {

            d0 = this.posY;

            this.moveFlying(par1, par2, 0.02F);

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

            this.motionX *= 0.5D;

            this.motionY *= 0.5D;

            this.motionZ *= 0.5D;

            this.motionY -= 0.02D;

 

            if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ))

            {

                this.motionY = 0.30000001192092896D;

            }

        }

        else

        {

            float f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            float f3 = 0.16277136F / (f2 * f2 * f2);

            float f4;

 

            if (this.onGround)

            {

                f4 = this.getAIMoveSpeed() * f3;

            }

            else

            {

                f4 = this.jumpMovementFactor;

            }

 

            this.moveFlying(par1, par2, f4);

            f2 = 0.91F;

 

            if (this.onGround)

            {

                f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;

            }

 

            if (this.isOnLadder())

            {

                float f5 = 0.15F;

 

                if (this.motionX < (double)(-f5))

                {

                    this.motionX = (double)(-f5);

                }

 

                if (this.motionX > (double)f5)

                {

                    this.motionX = (double)f5;

                }

 

                if (this.motionZ < (double)(-f5))

                {

                    this.motionZ = (double)(-f5);

                }

 

                if (this.motionZ > (double)f5)

                {

                    this.motionZ = (double)f5;

                }

 

                this.fallDistance = 0.0F;

 

                if (this.motionY < -0.15D)

                {

                    this.motionY = -0.15D;

                }

 

                boolean flag = this.isSneaking() && this instanceof EntityPlayer;

 

                if (flag && this.motionY < 0.0D)

                {

                    this.motionY = 0.0D;

                }

            }

 

            this.moveEntity(this.motionX, this.motionY, this.motionZ);

 

            if (this.isCollidedHorizontally && this.isOnLadder())

            {

                this.motionY = 0.2D;

            }

 

            if (this.worldObj.isRemote && (!this.worldObj.blockExists((int)this.posX, 0, (int)this.posZ) || !this.worldObj.getChunkFromBlockCoords((int)this.posX, (int)this.posZ).isChunkLoaded))

            {

                if (this.posY > 0.0D)

                {

                    this.motionY = -0.1D;

                }

                else

                {

                    this.motionY = 0.0D;

                }

            }

            else

            {

                this.motionY -= 0.08D;

            }

 

            this.motionY *= 0.9800000190734863D;

            this.motionX *= (double)f2;

            this.motionZ *= (double)f2;

        }

 

        this.prevLimbSwingAmount = this.limbSwingAmount;

        d0 = this.posX - this.prevPosX;

        double d1 = this.posZ - this.prevPosZ;

        float f6 = MathHelper.sqrt_double(d0 * d0 + d1 * d1) * 4.0F;

 

        if (f6 > 1.0F)

        {

            f6 = 1.0F;

        }

 

        this.limbSwingAmount += (f6 - this.limbSwingAmount) * 0.4F;

        this.limbSwing += this.limbSwingAmount;

    }

 

 

So you need to override the whole method and change the line near the top where it checks if isAIEnabled().

 

Or, you know, just override moveFlying and call the super method with a different 3rd parameter:

moveFlying(par1, par2, par3) {
    if isInWater then par3 = aCustomValue
    super.moveFlying(par1, par2, par3)
}

 

No need to copy-paste this monstrosity for a tiny change like this.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Link to comment
Share on other sites

 

Or, you know, just override moveFlying and call the super method with a different 3rd parameter:

moveFlying(par1, par2, par3) {
    if isInWater then par3 = aCustomValue
    super.moveFlying(par1, par2, par3)
}

 

No need to copy-paste this monstrosity for a tiny change like this.

True it is way more elegant in this case, but the problem is that in general (as you know) you have to think carefully about this sort of thing since the moveFlying() method is called from other places and if a person not so confident in coding does this they might forget to handle the lava case or whatever that also calls the method. 

 

A surgical change of just the lines you know are "wrong" (in this case any checks of isAIEnabled) is a bit safer for a beginning coder.  (Remember we're helping someone who couldn't figure out where to make the change on their own.)

 

I admit in this case copying a large method for change of one line is not elegant though.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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

    • Slot Gacor >> Mudah Maxwin Bersama Djarum4D   Slot gacor adalah salah satu jenis permainan judi online yang sangat populer di Indonesia. Bermain slot gacor berarti bermain permainan slot dengan kemungkinan keluaran yang lebih tinggi daripada slot tradisional. Dalam artikel ini, kami akan membahas secara lengkap tentang slot gacor, mulai dari pengertian dasar, cara bermain, strategi pemain, serta aspek keamanan dan etika dalam bermain.
    • DAFTAR & LOGIN TAYO4D   Slot gacor online adalah permainan yang menarik dan menghasilkan keuntungan untuk banyak pemain di seluruh dunia. Dalam artikel ini, kita akan membahas tentang cara memilih dan memainkan slot gacor online terbaik.
    • Tayo4D : Bandar Online Togel Dan Slot Terbesar Di Indonesia     Pemain taruhan Tayo4D yang berkualitas memerlukan platform yang aman, terpercaya, dan mudah digunakan. Dalam era teknologi ini, banyak situs online yang menawarkan layanan taruhan togel 4D, tetapi memilih yang tepat menjadi tuntas. Berikut adalah cara untuk membuat artikel yang membahas tentang situs online terpercaya untuk permainan taruhan togel 4D.  
    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa OLXTOTO telah menetapkan standar baru dalam dunia perjudian dengan menjadi platform terbesar untuk pengalaman gaming yang penuh kemenangan dan kegacoran, sepanjang masa. Dengan fokus yang kuat pada menyediakan permainan yang menghadirkan kesenangan tanpa batas dan peluang kemenangan besar, OLXTOTO telah menjadi pilihan utama bagi para pencinta judi berani di Indonesia. Maxwin: Mengejar Kemenangan Terbesar Maxwin bukan sekadar kata-kata kosong di OLXTOTO. Ini adalah konsep yang ditanamkan dalam setiap aspek permainan yang mereka tawarkan. Dari permainan slot yang menghadirkan jackpot besar hingga berbagai opsi permainan togel dengan hadiah fantastis, para pemain dapat memperoleh peluang nyata untuk mencapai kemenangan terbesar dalam setiap taruhan yang mereka lakukan. OLXTOTO tidak hanya menawarkan kesempatan untuk menang, tetapi juga menjadi wadah bagi para pemain untuk meraih impian mereka dalam perjudian yang berani. Gacor: Keberuntungan yang Tak Tertandingi Keberuntungan seringkali menjadi faktor penting dalam perjudian, dan OLXTOTO memahami betul akan hal ini. Dengan berbagai strategi dan analisis yang disediakan, pemain dapat menemukan peluang gacor yang tidak tertandingi dalam setiap taruhan. Dari hasil togel yang tepat hingga putaran slot yang menguntungkan, OLXTOTO memastikan bahwa setiap taruhan memiliki potensi untuk menjadi momen yang mengubah hidup. Inovasi dan Kualitas Tanpa Batas Tidak puas dengan prestasi masa lalu, OLXTOTO terus berinovasi untuk memberikan pengalaman gaming terbaik kepada para pengguna. Dengan menggabungkan teknologi terbaru dengan desain yang ramah pengguna, platform ini menyajikan antarmuka yang mudah digunakan tanpa mengorbankan kualitas. Setiap pembaruan dan peningkatan dilakukan dengan tujuan tunggal: memberikan pengalaman gaming yang tanpa kompromi kepada setiap pengguna. Komitmen Terhadap Kepuasan Pelanggan Di balik kesuksesan OLXTOTO adalah komitmen mereka terhadap kepuasan pelanggan. Tim dukungan pelanggan yang profesional siap membantu para pemain dalam setiap langkah perjalanan gaming mereka. Dari pertanyaan teknis hingga bantuan dengan transaksi keuangan, OLXTOTO selalu siap memberikan pelayanan terbaik kepada para pengguna mereka. Penutup: Mengukir Sejarah dalam Dunia Perjudian Daring OLXTOTO bukan sekadar platform perjudian berani biasa. Ini adalah ikon dalam dunia perjudian daring Indonesia, sebuah destinasi yang menyatukan kemenangan dan keberuntungan dalam satu tempat yang mengasyikkan. Dengan komitmen mereka terhadap kualitas, inovasi, dan kepuasan pelanggan, OLXTOTO terus mengukir sejarah dalam perjudian dunia berani, menjadi nama yang tak terpisahkan dari pengalaman gaming terbaik. Bersiaplah untuk mengalami sensasi kemenangan terbesar dan keberuntungan tak terduga di OLXTOTO - platform maxwin dan gacor terbesar sepanjang masa.
    • OLXTOTO - Bandar Togel Online Dan Slot Terbesar Di Indonesia OLXTOTO telah lama dikenal sebagai salah satu bandar online terkemuka di Indonesia, terutama dalam pasar togel dan slot. Dengan reputasi yang solid dan pengalaman bertahun-tahun, OLXTOTO menawarkan platform yang aman dan andal bagi para penggemar perjudian daring. DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI Beragam Permainan Togel Sebagai bandar online terbesar di Indonesia, OLXTOTO menawarkan berbagai macam permainan togel. Mulai dari togel Singapura, togel Hongkong, hingga togel Sidney, pemain memiliki banyak pilihan untuk mencoba keberuntungan mereka. Dengan sistem yang transparan dan hasil yang adil, OLXTOTO memastikan bahwa setiap taruhan diproses dengan cepat dan tanpa keadaan. Slot Online Berkualitas Selain togel, OLXTOTO juga menawarkan berbagai permainan slot online yang menarik. Dari slot klasik hingga slot video modern, pemain dapat menemukan berbagai opsi permainan yang sesuai dengan preferensi mereka. Dengan grafis yang memukau dan fitur bonus yang menggiurkan, pengalaman bermain slot di OLXTOTO tidak akan pernah membosankan. Keamanan dan Kepuasan Pelanggan Terjamin Keamanan dan kepuasan pelanggan merupakan prioritas utama di OLXTOTO. Mereka menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan para pemain. Tim dukungan pelanggan yang ramah dan responsif siap membantu pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Promosi dan Bonus Menarik OLXTOTO sering menawarkan promosi dan bonus menarik kepada para pemainnya. Mulai dari bonus selamat datang hingga bonus deposit, pemain memiliki kesempatan untuk meningkatkan kemenangan mereka dengan memanfaatkan berbagai penawaran yang tersedia. Penutup Dengan reputasi yang solid, beragam permainan berkualitas, dan komitmen terhadap keamanan dan kepuasan pelanggan, OLXTOTO tetap menjadi salah satu pilihan utama bagi para pecinta judi online di Indonesia. Jika Anda mencari pengalaman berjudi yang menyenangkan dan terpercaya, OLXTOTO layak dipertimbangkan.
  • Topics

×
×
  • Create New...

Important Information

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