Aller au contenu

Photo

Camera Won't rotate In Overland Map


  • Veuillez vous connecter pour répondre
6 réponses à ce sujet

#1
Chomple

Chomple
  • Members
  • 4 messages
When the mouse hits the screen in Overland map the screen doesn't roatate. It stays fixed and won't budge is there anything to do to get the camera rotating in overland map?


Thanks

#2
kamalpoe

kamalpoe
  • Members
  • 711 messages
Nothing you can do. The Overland Map is designed to work this way, with a locked camera.

#3
Chomple

Chomple
  • Members
  • 4 messages
Damn, Thank you Very much Sucks that the camera is locked though.

#4
Friar

Friar
  • Members
  • 293 messages
What if your caravan is waylaid right in front or above a city? One of my caravans is stuck because when I try to click it so I can give it gold, trade bars, or goods, to reactivate it, I'm selecting the city. It's frustrating because it's just sitting there doing nothing and Ive got no way to get it moving again.

#5
kevL

kevL
  • Members
  • 4 061 messages
hows your compile-fu?

// 'kd1_caravan_jump'
void main()
{
  object oPC = OBJECT_SELF;
  string sLeft, sCaravan;

  int i = 1;
  object oCaravan = GetNearestObject(OBJECT_TYPE_CREATURE, oPC, i);
  while (GetIsObjectValid(oCaravan))
  {
    sCaravan = GetTag(oCaravan);
    sLeft = GetStringLeft(sCaravan, 11);
    if ("nx2_caravan" == sLeft) break;

    ++ i;
    oCaravan = GetNearestObject(OBJECT_TYPE_CREATURE, oPC, i);
  }

  if (GetIsObjectValid(oCaravan))
  {
    AssignCommand(oCaravan, ClearAllActions(TRUE));
    AssignCommand(oCaravan, JumpToObject(oPC));
  }
}


btw, camera can be unlocked w/ 'toggleoverlandcamera' -- i like Character mode on the OL.

Compile the script as 'kd1_caravan_jump' to MyDocs->Override

Stand somewhere so that the stuck caravan is the closest caravan. Then:

`
DebugMode 1
rs kd1_caravan_jump
DebugMode 0
`

- it should pop over to your PC; then get out of its way 'cause the HB ought set it moving again.

#6
I_Raps

I_Raps
  • Members
  • 1 262 messages
*ahem*

I'm afraid there was some misinformation posted here three years ago.

`
debugmode 1
toggleoverlandcamera
debugmode 0
`

#7
Happycrow

Happycrow
  • Members
  • 612 messages
//Thread Necromancy!

How would one do this for the players on a PW? The difference is pretty huge.