Jump to content

koredump

+Premium Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by koredump

  1. Hello,

    I published yesterday my first cartridge, after compiling it for pocket PC. I uploaded the gwz file, everything is ok.

    Do I need to upload a specific file for garmin and oregon ? How to do so ?

     

    Thanks !

     

    Koredump

  2. Try reducing the number of characters used in the text boxes. The site doesn't actually seem to enforce the maximum length; it'll just error if you put in more text.

     

    Failing that, please send me the GWZ via email and a list of what you're typing into each and every text box on that page. If I can reproduce it, I can write up a bug report for Groundspeak that will make it easy for them to test and fix the issue. My email list is shown in my profile on geocaching.com.

     

    Sorry for the delay.

    In fact, it was caused by html tags in the attributes.

     

    Could you please confirm me something : uploading a single gwz allows the users to download any kind of platform files ? it is compiled on request ?

     

    Thanks !

  3. In fact it does not work through the emulator.

    for z = 1,6 do

    i = table.remove(coord3, math.random(#coord3))

    function i:OnEnter()

    Wherigo.MessageBox{Text="Dommage, ce n'est pas la !", Media=zmediatresorVide, Callback=cartLuneRandom.MsgBoxCBFuncs.MsgBoxCB1}

    i.Active = false

    i.visible = false

    end

    end

     

    I get the message but the zones are still active and visible.

    Is something wrong with the code or the emulators is not specific enough ?

     

    Thanks !

  4.  

    Brilliant, thanks, even more that I expected. Many many thanks...

    I just have to set the onEnter functions now.

    Great :-)

     

    By the way, I would need your help again please...

    What's wrong with this ?

     

    n = table.remove(coord3, math.random(#coord3))

    function n:OnEnter()

    -- #GroupDescription=Script --

    -- #Comment=Script Comment --

    Wherigo.MessageBox{Text="Dommage, ce n'est pas la !", Media=zmediatresorVide, Callback=cartLuneville.MsgBoxCBFuncs.MsgBoxCB1}

    n.Active = false

    end

     

    The emulator crashes.

     

    Thanks in advance !!

  5. first, create the items regularly without setting Container

     

    second, as long as you're in custom Lua anyway, don't put names of zones in the array, put the zones themselves!

    i.e.

    coord3 = {zoneDoorway, zoneLivingroom, zoneDarkforest (......) }

    no strings, no quotes, direct object references

     

    third, use items' MoveTo method:

    zitemOne:MoveTo(coord3[math.random(10)])

    this sets the Container and assigns the ObjectLocation in one fell swoop and you don't have to do it manually

     

    fourth, if you don't want to use the same zone twice, don't forget to remove it:

     

    r = math.random(#coord3) -- pick a random number from 1 to current length of coord3

    z = table.remove(coord3, r) -- remove the element and put it into z

    zitemOne:MoveTo(z) -- move item to zone z

     

    Brilliant, thanks, even more that I expected. Many many thanks...

    I just have to set the onEnter functions now.

    Great :-)

  6. Hi there,

    I want to hide 4 objects randomly between 10 zones of my cartridge.

    For this, I want to use an array (coord3 for instance) to store the names of my zones.

     

    I need now to set the object.Container and zonePoints

    I thought about :

    zitemOne = Wherigo.ZItem{Cartridge=cartName, Container=coord3[random(10)]}

    zitemOne.ObjectLocation = coord3[random(10)].OriginalPoint

     

    For sure it does not work as coord3[random(10)] is a string and not an object.

    What should I do ?

     

    Thanks in advance !

  7. Hi,

    I'v uploaded my cartridge, without any issue, but cannot set it active (got a server page error).

    I guess it does not come from the cartridge itself (but I got rid of french accents by the way).

     

    Any clue ?

     

    I haven't found either the way to archive or delete previous cartridges.

     

    Thanks a lot...

     

    Koredump

  8. Hello there,

    Do someone know a shop in New-York city selling TBs and other Geocaching stuff ?

    I don't want to shop online (shipping costs are sometimes crazy) and someone I know fly to NYC in july.

     

    Thanks for your help, and happy caching,

     

    Koredump

×
×
  • Create New...