
Delta68
-
Posts
1696 -
Joined
-
Last visited
Posts posted by Delta68
-
-
8 finds Would do more but MrsD isn't a big fan of them
13 hides
9 of those hides are all one series packaged into one cartridge
I could easily plug in a new set of waypoints and roll out another multiple-cache series but I like to use new ideas each time really and I've always got plenty of ideas!
I had to archive our Shakespeare themed Wherefore art thou Wherigo? (set in Stratford upon Avon) because the final cache went missing and so did an ornate lamp post which was key to one of the stages.
Mark
-
Interesting use of quasi-binary, by the way.
Going off topic here but originally I had nine zones which had to be visited to unlock a final tenth zone. The zones could be visited in any order and the player would pick up a piece of a treasure map. In order to display the 'completed map so far' I had to have 512 images - one for each of the possible variations of the map.
The quasi-binary was in order to select the correct map image.
It worked fine in the emulator but was virtually unusable in the Oregon so I scrapped the idea.
Mark
-
Something else I noticed was this:
I might be mistaken but the values of variables don't appear to be being restored on a resume.
Why do I think this?
The cartridge has eight flag variables which are each set to true when each zone is visited. The the cacher can choose to hide each zone when it is finished with.
When all eight zones have been visited it un-hides the ninth zone.
The cartridge automatically saves after each time a zone has been visited so if it crashes the cacher doesn't have to start from the beginning again.
The test version I was playing with has 'status' comments to help debugging and I accidentally exited after zone two
When I resumed the game and reached zone three I'm pretty sure the status messages didn't show for the previous two flags states suggesting that they were false however, zones ONE and TWO did remain hidden
The function checkZones() is called after each zone is visited.
'total' is a numeric variable declared as a normal cartridge variable ie: not locally
function checkZones()total = 0
if(Z1Visited == true) then
total = 1
Wherigo.ShowStatusText("Z1Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z2Visited == true) then
total = total + 2
Wherigo.ShowStatusText("Z2Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z3Visited == true) then
total = total + 4
Wherigo.ShowStatusText("Z3Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z4Visited == true) then
total = total + 8
Wherigo.ShowStatusText("Z4Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z5Visited == true) then
total = total + 16
Wherigo.ShowStatusText("Z5Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z6Visited == true) then
total = total + 32
Wherigo.ShowStatusText("Z6Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z7Visited == true) then
total = total + 64
Wherigo.ShowStatusText("Z7Visited")
Wherigo.ShowStatusText(tostring(total))
end
if(Z8Visited == true) then
total = total + 128
Wherigo.ShowStatusText("Z8Visited")
Wherigo.ShowStatusText(tostring(total))
end
if total == 255 then
Wherigo.ShowStatusText("total == 255")
Wherigo.ShowStatusText(tostring(total))
zoneGrotto.Visible=true
zoneGrotto.Active=true
Wherigo.MessageBox{Text=[[Well Done! You have caught all the reindeer.
You must now take them to Santa's Grotto]],}
end
end
Mark
-
This is my latest http://www.Wherigo.com/cartridge/details.aspx?CGUID=80927e16-2264-4b86-94bd-a8a903e0254e
This might not be a good example though because it wasn't working 100% even on the previous version of the iPhone player - although the items were working fine in the zones
It's got a block to prevent it being played the the Groundspeak emulator as well...
Thanks
Mark
Edited for spelling
-
... wouldn't this be a great tie-in into a leap souvenir?
It's been suggested before...
and it's been rejected before...
-
I'll try to remember that when I have a meeting with Groundspeak later this week. I don't know if you're just supposed to contact the developer, spstanley, directly or what. (On a side note, it appears he's on a one-a-day streak since May.) I cringe when I think of submitting bugs to Groundspeak because there have been times I've done so and later had to badger them repeatedly before they were addressed.
Thanks Ranger Fox!
I knew he was on here somewhere but I couldn't remember his name and the search didn't help much
Mark
-
No change is ever going to please everybody
The best thing is just to use available addons to tweak the webpages to your own requirements
I use:
- Addblock to block ads and hide the Facebook links etc
- Stylish to replace the ghastly Found It , DNF and Attended smilies with the previous versions
- Numerous GreaseMonkey scripts to make life easier
- Addblock to block ads and hide the Facebook links etc
-
Not sure what the correct route is to report player bugs
Pi-Soft's website doesn't appear to be there anymore
I have sent a request to Groundspeak asking for their help.
Mark
-
That's exactly what our latest cartridge does.
I've had so many problems in the past waiting for zones to trigger that I wrote the whole lot based on On Proximity. This works great on the Oregon.
The caches themselves are several miles away so I have I have a test version of the cartridge with waypoints closer to home. With the Oregon I can play though the whole thing (nine zones) at walking pace without even have to slow down. If only I can somehow get the iPhone to work this well...
Mark
-
There's really not much point in 'unlocking' a cartridge.
I didn't event add the code to mark as completed in our last few cartridges - I forgot all about it!
Sorry, that doesn't answer your question
Mark
-
I'm encountering zone problems with the current iphone app (Version: 1.3.5 ) on a cartridge which worked fine with an earlier version of the player
Anyone else had this problem?
-
This used to work fine in 2008 even here in the UK
I suspect it's a problem with a required website no longer being available
-
I had another play this morning and it seems that although I can see the items in a zone when in Proximity range, I have to actually be in the zone for the commands to work.
This is a major problem and I'm sure that it wasn't that way with the previous version of the player.
I had to spend a good few minutes at each zone waiting for the commands to work whereas previous tests using an older version of the player have been no trouble at all
-
Thanks for the reply bretina
It sounds like you might have diagnosed the problem. I've had so much trouble with zones in the past that this current one I've fairly small zones (20 feet square) but has everything happening 'On Proximity' and proximity is set at 50 feet
I'll try increasing zone size and see if that improves things
-
My latest creation works fine on the Oregon but has this strange "Nothing available" error on the iPhone (3G)
It pops up when a command is called.
I have an item with eight buttons on each with a command and that works fine but I have other items with commands which produce the error. The first item is loaded to the Player on startup but the other items are positioned in zones
The zones are active from the start. Not sure if that is significant.
The items in the zones show up in 'you see' on proximity
I never had this problem with the previous version of the player but I have tweaked the code a bit since installing the latest player
I found a Czech forum where someone has the same problem but I'm not sure they resolved it here here's the same page translated through Google
Any ideas?
Thanks
-
Right at the end Jeremy stated that in 2012 the focus would be on quality over quantity. Does anyone have any idea how they plan to implement this?
Scrapping 'Challenges'
perhaps?
-
Interesting that a newer, high spec Garmin unit does not support Wherigo!
Dakotas don't either
I think it's since Garmin had a lover's tiff with Groundspeak
Or it could be that Garmin would rather try and promote their Chirp stuff instead.
Talking of which, anything a Chrip can do you can do with a simple Wherigo (as long as you are outdoors)
Not only that, you get a great looking icon, it will run on more than just Garmins and saved yourself £20 in the process!
Mark
-
...until the H/W compatibilities are sorted out and it's a more stable/reliable platform I don't think I'll be releasing one myself.
I'd say bite the bullet and get it published. You might be pleasantly surprised just how many platforms it will run on.
Make it clear on the cache page that it has only been tested on certain hardware and hopefully other cachers will try it on other systems anyway and confidence will grow as successful reports roll in...
Mark
-
I understand Delta68's comments, I have tended to report issues, in the past. But it felt at one stage a while back I wasreviewing the reviewers due to new caches, most of which were due to issues on the cache page, including things such as: hidden in a black plastic bag, behind the gravestone of xxx, remove the odd stone (in a drystone wall.) A couple of traditionals which were obviously virtuals. Another opposite a school gateway. So I have stepped back and tend to let someone else report them now if they know any better
as it just seems to much aggro.
Just seen one go through yesterday which obviously has an error on the coords as the cache mentions a museum and standing in the street to get it, the coordinates put it in the middle of a nowhere without even a footpath.
To make it clear I have the upmost respect for the reviewers and errors will happen, but I feel its not down to me to review their work?
Mark
-
Perhaps there could be a category for those who have found the ten oldest active uk mainland caches
It would look like this:
10 caches found:
Delta68
9 caches found:
bsh92673
Mario McTavish
7 Caches Found:
aB5dEglYeS5P
Pyoung1s
6 Caches Found:
AmayaTom
FantasticCat
simwil
5 Caches Found:
Grumpy Ant
Maple Leaf
Pharisee
qrang
Rocky Balboa
Simply Paul
Stuey
Team Hippo
The Haywood Hornet
The Moor We Hunt...
Von-Horst
B)
Mark
-
This is impossible for reviewers to police though.
Not impossible at all... We have super powers
We are supposed to help reviewers improve the game by reporting anomalies and I may or may not have done so in the past but I don't bother these days because nothing gets done about it anyway...
-
An even better alternative would be to write a simple Wherigo where there is nothing at all at the starting point
B)
Mark
-
You can put 'question to answer' stages in the woods, but not physical stages, which are anything physically placed there by the owner. This would include tags.
This is impossible for reviewers to police though.
I've seen Multis with physical stages listed as QTA stages to avoid proximity problems and it could no doubt be used to place a starting location in an otherwise prohibited area.
Mark
-
It's a pity you didn't review my cache which I tried to set with exactly the same idea a couple of months back.
I had it reviewed by Lindinus...
There is very little consistency amongst the reviewers.
Our local reviewer is refusing to publish a series which is virtually identical to one which allowed by Lindinus just a few months ago.
What are Waypoints
in United Kingdom and Ireland
Posted
I'd be surprised if a reviewer said you need a waypoint for parking
Suggested parking is nice to have, but certainly not compulsory
Mark