Cuberite Forum
SVN Builds - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html)
+--- Forum: Development (https://forum.cuberite.org/forum-13.html)
+--- Thread: SVN Builds (/thread-215.html)

Pages: 1 2 3 4


RE: SVN Builds - rs2k - 11-08-2011

Something with SSH not being able to understand the character I think. Just ignore the funky characters.

I found this:

http://lists.berlios.de/pipermail/supertux-devel/2006-April/000186.html


Is Squirrel not compatible with 64 bit systems?


RE: SVN Builds - FakeTruth - 11-08-2011

(11-08-2011, 12:48 PM)rs2k Wrote: Is Squirrel not compatible with 64 bit systems?

Yes it is, but I think you need to compile with different arguments


RE: SVN Builds - ThuGie - 11-09-2011

Hey,

Client still crashes doesnt seem to be anything in my code so far i can see.

Code:
void cChicken::KilledBy( cEntity* a_Killer )
{
    //1 raw chicken
    cPickup* pRawChicken = new cPickup( (int)(m_Pos->x*32), (int)(m_Pos->y*32), (int)(m_Pos->z*32), cItem( E_ITEM_RAW_CHICKEN, 1 ) );
    pRawChicken->Initialize( GetWorld() );
    //0 to 2 feather.
    int rFeather = rand() % 3;
    if (rFeather != 0) {
        cPickup* pFeather = new cPickup( (int)(m_Pos->x*32), (int)(m_Pos->y*32), (int)(m_Pos->z*32), cItem( E_ITEM_FEATHER, rFeather ) );
        pFeather->Initialize( GetWorld() );
    }
    cMonster::KilledBy( a_Killer );
}



RE: SVN Builds - rs2k - 11-09-2011

I have a feeling E_ITEM_RAW_CHICKEN might be crashing the client, try replacing it with another feather to see if it's the code or not causing it.


RE: SVN Builds - ThuGie - 11-09-2011

Well its not just for chicken but for all animals/mobs that drop multi loot.
With multi loot i mean 2 dif items.
Edit and how can i set the health of a mob/animal ?


RE: SVN Builds - FraNkYWIllS - 12-20-2011

Well,
thats true, But still would love to see a build for Big or Crash fixes.No crash for me yet but some small bugs.
Running server on windows xp sp3 btw.