Jump to content

eyespy900

Members
  • Posts

    495
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by eyespy900

  1. Hi, I have a sketch up 7 model, does anyone know if I can convert it to .3ds? This is a model I gave downloaded from 3d warehouse. I have never used sketch up before. Could someone please advise. Is sketch up free to use or do you have to pay for subscription? How easy is it to convert?

    Thanks

  2. hi all, got a new laptop the other day and i am having some problems.  when i run the game it appears on the screen in 800x600 format.  my computer screen resolution is 1366x x768.   the game displays all the way from top to bottom, but not from left to right.  can anyone give me a bit of help how to correct this.

     

    i have tried going into the cfg file and manually setting the res but it displays the same.

     

    any help would be greatfully recieved

     

    many thanks

  3. or if anyone else knows how to add the door action in to the attach hose script ?

    hi hoppah

    i have a attach fire hose script that opens the rear doors of my fire engine when you connect a hose. at the end of the script there are the open door parts. where should i put this in the limited water supply script?

    object AttachFireHose : CommandScript

    {

    AttachFireHose()

    {

    SetValidTargets(ACTOR_OBJECT | ACTOR_VEHICLE);

    SetGroupID(CGROUP_FIREHOSE);

    SetGroupLeader(true);

    SetPossibleCallers(ACTOR_PERSON);

    SetPossibleEquipment(EQUIP_FIREHOSE);

    SetPossibleExists(CPE_FREE_HOSE_CONNECTION);

    SetNeedsConnectedHose(CFN_FAIL);

    SetRestrictions2(RESTRICT2_ISHYDRANT);

    SetPriority(220);

    }

    /*bool CheckPossible(GameObject *Caller)

    {

    if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)

    return false;

    return Caller->GetFirehoseID() == 0 && Caller->GetEquipment()==EQUIP_FIREHOSE && Game::ExistsFreeHoseConnection();

    }*/

    bool CheckGroupVisibility(GameObject *Caller)

    {

    if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)

    return false;

    return Caller->GetFirehoseID() == 0;

    }

    bool CheckTarget(GameObject *Caller, Actor *Target, int childID)

    {

    if(!Caller->IsValid() || !Target->IsValid() || (Caller->GetID()==Target->GetID()))

    return false;

    if(Caller->GetFirehoseID())

    return false;

    if(Caller->GetType()!=ACTOR_PERSON)

    return false;

    Person c(Caller);

    if (c.GetEnteredCarID() != -1)

    return false;

    if(Caller->GetEquipment()==EQUIP_FIREHOSE)

    {

    if(Target->GetType() == ACTOR_OBJECT)

    {

    GameObject obj(Target);

    if(obj.IsHydrant() && !obj.IsHydrantInUse())

    return true;

    return false;

    } else

    if(Target->GetType() == ACTOR_VEHICLE)

    {

    Vehicle v(Target);

    if(v.GetVehicleType() == VT_FIREFIGHTERS_GTF && v.GetEnergy() > 0.1f * v.GetMaxEnergy() && v.IsConnectorFree())

    return true;

    return false;

    }

    }

    return false;

    }

    void PushActions(GameObject *Caller, Actor *Target, int childID)

    {

    Caller->PushActionMove(ACTION_NEWLIST, Target, TARGET_FREE_CONNECTOR);

    if (Target->GetType() == ACTOR_VEHICLE)

    Caller->PushActionCheckFreeConnector(ACTION_APPEND, Target);

    Caller->PushActionUseEquipment(ACTION_APPEND, Target, childID, 1.0f);

    if (Target->GetType() == ACTOR_VEHICLE)

    {

    Vehicle v(Target);

    if (v.HasCommand("Cidea"))

    {

    v.EnableBlinker(BLT_BOTH);

    Game::ExecuteCommand("DUMMYOpenDoor1", &v, &v);

    Game::ExecuteCommand("DUMMYOpenDoor2", &v, &v);

    }

    }

    }

    };

    hoppah or any one help me please

  4. hi hoppah

     

    i have a attach fire hose script that opens the rear doors of my fire engine when you connect a hose.  at the end of the script there are the open door parts.  where should i put this in the limited water supply script?

     

    object AttachFireHose : CommandScript
    {
        AttachFireHose()
        {
            SetValidTargets(ACTOR_OBJECT | ACTOR_VEHICLE);
            SetGroupID(CGROUP_FIREHOSE);
            SetGroupLeader(true);
            SetPossibleCallers(ACTOR_PERSON);
            SetPossibleEquipment(EQUIP_FIREHOSE);
            SetPossibleExists(CPE_FREE_HOSE_CONNECTION);
            SetNeedsConnectedHose(CFN_FAIL);
            SetRestrictions2(RESTRICT2_ISHYDRANT);
            SetPriority(220);
        }

        /*bool CheckPossible(GameObject *Caller)
        {
            if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)
                return false;
            return Caller->GetFirehoseID() == 0 && Caller->GetEquipment()==EQUIP_FIREHOSE && Game::ExistsFreeHoseConnection();
        }*/

        bool CheckGroupVisibility(GameObject *Caller)
        {
            if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)
                return false;
            return Caller->GetFirehoseID() == 0;
        }
        
        bool CheckTarget(GameObject *Caller, Actor *Target, int childID)
        {
            if(!Caller->IsValid() || !Target->IsValid() || (Caller->GetID()==Target->GetID()))
                return false;
                
            if(Caller->GetFirehoseID())
                return false;
                
            if(Caller->GetType()!=ACTOR_PERSON)
                return false;
            Person c(Caller);
            if (c.GetEnteredCarID() != -1)
                return false;
                
            if(Caller->GetEquipment()==EQUIP_FIREHOSE)
            {
                if(Target->GetType() == ACTOR_OBJECT)
                {
                    GameObject obj(Target);
                    if(obj.IsHydrant() && !obj.IsHydrantInUse())
                        return true;
                    return false;
                } else
                if(Target->GetType() == ACTOR_VEHICLE)
                {
                        Vehicle v(Target);
                        if(v.GetVehicleType() == VT_FIREFIGHTERS_GTF && v.GetEnergy() > 0.1f * v.GetMaxEnergy() && v.IsConnectorFree())
                            return true;
                        return false;
                }
            }

            return false;
        }

        void PushActions(GameObject *Caller, Actor *Target, int childID)
        {
            Caller->PushActionMove(ACTION_NEWLIST, Target, TARGET_FREE_CONNECTOR);
            if (Target->GetType() == ACTOR_VEHICLE)
                Caller->PushActionCheckFreeConnector(ACTION_APPEND, Target);
            Caller->PushActionUseEquipment(ACTION_APPEND, Target, childID, 1.0f);

            if (Target->GetType() == ACTOR_VEHICLE)
            {
                Vehicle v(Target);
                if (v.HasCommand("Cidea"))
                {
                    v.EnableBlinker(BLT_BOTH);
                    Game::ExecuteCommand("DUMMYOpenDoor1", &v, &v);
                    Game::ExecuteCommand("DUMMYOpenDoor2", &v, &v);
                }
            }
        }
    };
     

  5. I was just wondering if anyone had an idea when this mod may be out or if any beta testers were needed I can help with that

    it is against the rules terms and conditions to ask for release dates.  it does really annoy the creators when people ask. 

     

    i am sure that if the creators for this mod had a release date they would share it with everyone.

  6. h, sorry for my absence, i lost heart it the mod after accidentally deleting all my new work.  how ever i have started again and have some police cars to show.

     

    hope you like them

     



     

    post-665-0-68169000-1372896413_thumb.jpg

  7. will there be stations like the LA mod I KNOW its alot of work before people start to moan its just a question

    unfortunatly not. there might be in future releases, but i have to learn how to do the scripting for that.

    it will be the same as v 1.0 but many more units, better models,

  8. i have been working on the essex air ambulance. they currently use an md-902 explorer, how ever, the closest thing to that is part of the netherlands 0.70 mod. they state that no-one can use any models from that mod. so i decided to do the ec135 eurocopter that essex used before the md-902 explorer. i hope you all like it.

    essexaa.jpg

  9. hmmm. have you got permission to use them met police999. i have send mintcake and sniped pm's about a week ago with hopes of using them, but had no reply. however, i have been contacted by e34p who has kindly offered to donate his personnel skins.

×
×
  • Create New...