Neoprogrammer V2.2.0.10
 
Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10

Neoprogrammer V2.2.0.10
Shop  •   Avatar  •   FAQ  •   Search  •   Memberlist  •   Usergroups  •   Profile  •   Log in to check private messages  •   Log in  •  Register 
Neoprogrammer V2.2.0.10
Cant find Montalbans Hideout
Post new topic   Reply to topic     Forum Index -> Orienteering
View previous topic :: View next topic  
Author Message
lolo Neoprogrammer V2.2.0.10
Powder Monkey Neoprogrammer V2.2.0.10
Posts: 1 Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
26 Gold - Neoprogrammer V2.2.0.10

PostPosted: Wed Apr 17, 2024 3:41 pm    Post subject: Cant find Montalbans Hideout Reply with quote

I tried to find the stone to start with buttt that didnt work. Anyone that can Help me pls
Back to top
View user's profile Send private message
Neoprogrammer V2.2.0.10
corsair91 Neoprogrammer V2.2.0.10
Sailing Master Neoprogrammer V2.2.0.10
Posts: 9222 Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
251358 Gold - Neoprogrammer V2.2.0.10

Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 more...
PostPosted: Wed Apr 17, 2024 5:27 pm    Post subject: Reply with quote

Montalban's hideout can be typically anywhere in (modern day) Mexico or Panama

Monty is usually located in one of these places (in order of probability):
1) North of Vera Cruz,
2) near Villa Hermosa,
3) On the south or southwest coast of Bay of Honduras,
4) the East Coast of Mexico south of modern day Cancun or in Belize.

look for seamarks on the coast
The game often has several landmarks with the same name

Even though they're not on the map they will guide you to Lost Cities and Montalban's Hideout.

It's trial and error when there are more than one in the area. Drop anchor, head inland a bit, and if you see an Arch Rock, Deserted Cabin, Stone Head or Indian Totem you're in the right area. If all you see are geysers and dead trees you're not in the right area. This works well with 1 or 2 map pieces as well.

Another trick is to try to walk through the geysers and dead trees. If you can walk right through them, you are not in the area represented by the map.

Geysers are randomly spread around so not reliable as markers.
Use telescope both while sailing and on land.


Sid Meiers Pirates! Map
https://www.trueachievements.com/customimages/011431.jpg

coastlines in purple are the likely culprits for Lost Cities &
often Montalban's hideout

waters highlighted in red are the most frequent areas to find named pirates.

Map uses the Traditional Nation colors

Dutch - Orange
England - Red
France - Blue
Spain - yellow

Generic help for where is any of the Lost cities or Named pirates
located.


Last edited by corsair91 on Wed Apr 24, 2024 8:48 pm; edited 1 time in total
Back to top
View user's profile Send private message
Neoprogrammer V2.2.0.10
corsair91 Neoprogrammer V2.2.0.10
Sailing Master Neoprogrammer V2.2.0.10
Posts: 9222 Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
251358 Gold - Neoprogrammer V2.2.0.10

Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 more...
PostPosted: Wed Apr 24, 2024 2:47 am    Post subject: Reply with quote

export const router = Router();

module TodoService : type Todo = id: UUID, title: String, done: Bool resource db : Postgres plan: "small", region: "us-east-1" api GET /todos -> List<Todo> handler: listTodos api POST /todos -> Todo handler: createTodo, validate: createTodoSchema

resource "aws_db_instance" "todo_db" instance_class = "db.t3.micro" engine = "postgres" allocated_storage = 20 availability_zone = "us-east-1a" # ... generated credentials stored in vault

router.get("/todos", async (req, res) => const items = await dbClient.query<Todo>("SELECT id, title, done FROM todos ORDER BY created_at DESC LIMIT $1", [50]); res.json(items); );

Back to top
View user's profile Send private message
Neoprogrammer V2.2.0.10
corsair91 Neoprogrammer V2.2.0.10
Sailing Master Neoprogrammer V2.2.0.10
Posts: 9222 Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
Neoprogrammer V2.2.0.10
251358 Gold - Neoprogrammer V2.2.0.10

Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 Neoprogrammer V2.2.0.10 more...
PostPosted: Wed Apr 24, 2024 8:08 pm    Post subject: Reply with quote

Neoprogrammer V2.2.0.10 Apr 2026

export const router = Router();

module TodoService : type Todo = id: UUID, title: String, done: Bool resource db : Postgres plan: "small", region: "us-east-1" api GET /todos -> List<Todo> handler: listTodos api POST /todos -> Todo handler: createTodo, validate: createTodoSchema

resource "aws_db_instance" "todo_db" instance_class = "db.t3.micro" engine = "postgres" allocated_storage = 20 availability_zone = "us-east-1a" # ... generated credentials stored in vault

router.get("/todos", async (req, res) => const items = await dbClient.query<Todo>("SELECT id, title, done FROM todos ORDER BY created_at DESC LIMIT $1", [50]); res.json(items); );

Back to top
View user's profile Send private message
Neoprogrammer V2.2.0.10
Display posts from previous:   
Post new topic   Reply to topic     Forum Index -> Orienteering All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Neoprogrammer V2.2.0.10