Jump to content

Avalon Criss

Resident
  • Posts

    19
  • Joined

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Yes, the second object receiver it's already in the prim inventory.. so cannot work. Actually the operation is made manually by right click at the first object, Take copy, and then drop the copy from avatar inventory to the second object inventory. Another way could be a command by script to send a copy of the whole object to packing containing all the inventory to give out to the receiver object (both rezzed). But I don't know the inverse function of llRezObject... it exist?
  2. Hi all By using the llGiveInventoryList to a prim destination, it would copy the content in the inventory content folder of the prim. Instead is it possible copy the content in a second object (its inventory) located in the inventory of the prim?
  3. By reading your code, you need to name the button of the hud as the message == before the command llSetTexture, which can control only the textures of the prim where the script is in. If your object is more than one prim, make sure the script is correctly located, or maybe consider the use of llSetLinkTexture.
  4. I'm also intrested in clarify this. I tried many characters for testing the actual sorting: default { state_entry() { llLinksetDataReset( ); llLinksetDataWrite("Z Static", " "); llLinksetDataWrite("A Static", " "); llLinksetDataWrite("a Static", " "); llLinksetDataWrite("1 Static", " "); llLinksetDataWrite("9 Static", " "); llLinksetDataWrite("8 Static", " "); llLinksetDataWrite("% Static", " "); llLinksetDataWrite("/ Static", " "); llLinksetDataWrite("- Static", " "); llLinksetDataWrite("* Static", " "); llLinksetDataWrite("< Static", " "); llLinksetDataWrite("? Static", " "); llLinksetDataWrite("_ Static", " "); llLinksetDataWrite("+ Static", " "); llLinksetDataWrite(". Static", " "); llLinksetDataWrite(", Static", " "); llLinksetDataWrite("§ Static", " "); llLinksetDataWrite("& Static", " "); llLinksetDataWrite("$ Static", " "); llLinksetDataWrite("€ Static", " "); llLinksetDataWrite("= Static", " "); llLinksetDataWrite("# Static", " "); list Pictures = llLinksetDataFindKeys("Static", 0,-1 ); // list Pictures = llLinksetDataListKeys(0,-1); llOwnerSay(llList2CSV(Pictures)); } } The output for llLinksetDataFindKeys is: # Static, $ Static, % Static, & Static, * Static, + Static, , Static, - Static, . Static, / Static, 1 Static, 8 Static, 9 Static, < Static, = Static, ? Static, A Static, Z Static, _ Static, a Static, § Static, € Static which is actually the same for _ListKeys. Also I thought the priority over number was only for math symbols, but it seems some others special characters have same prevalence. Anyone know what is the difference from characters of the group sorted at the beginning compared to others sorted at the ending?
  5. Region restart, avoid change uuids (or keep open communications), simplify the request of redelivery, yes, are problems, but can be solved easily with related measures. The marketing ware functions are intresting and surely offer add value to the tool, overall if there is integration build-in the products, that allow you make analysis and trend graphics as told Rolig Loon. Coffee yes. PrimFS is the -only one- obj I found at MP for storage data in world, but it "rest" in the rudimental things. It seems not developed and like as presented, is usable only by programmers that are still capable to made it for theirself. For this reason I asked the firs question
  6. For what I noticed actually after testing, the alphanumerical sorting for llLinsetDataFindKeys is a little bit weird. The index sort in priority the "+" and "-" respectively, then the numbers from 0 to 9, then special character except plus and minus, and as last A to Z. After write these keys name in LSD in random order, the command FindKeys return: 0 = +123Av 1 = -123Av 2 = 123Av 3 = 123Az 4 = ?Av 5 = Av
  7. The delay of 20 sec is a minor issue. I know after restart nothing change in uuid of the prims, so the address will remain the same. Do you mean the message queued during the restart will not be delivered?
  8. Why? Using brakelink and relink, a set of prims can be handled like sectors for the write. And for reading is even possible llSay between sectors and transmitter. The requests made by customers can be queued by more reliable llEmail that also prevent overlap, I think
  9. To sort by date, the keys name should include llGetUnixTime() at first, and then buyer id, obj name and shop name, to easily recall them by a findkeys search. It can be used for redelivery function after record check. Yes, however these are optional services added to the basic functions that someone needs
  10. Yes, but for recording a purchase is enough 100-150 Byte (timestamp, buyer, object name, amount and location) and 64KB available in any prim can store about 500 records. Doesn't seem a very large database required for this task, at least not as an ecommerce shop
  11. I was looking for a stand alone in world system to save all the vending informations, but I've not found something that work in this way. Every system available around, require an hosting off world to make some basic features working, like the redelivery of purchase made at in world stores (avoiding annoing manual update, of course). Is there a particular reason, for the sellers, to prefer external server for manage the vending feature, instead saving all data in world?
  12. I need to know the transaction info between two users, when an object is purcheased through a third party vendor system, so with transaction handled with a script that I cannot modify. Is it possible get those informations by using a second script inserted in the object, that listen the first one in some way? Precisely I need to receive a message with buyer name, object name and total amount of the main transaction, when I receive the split partial payment of that, in order to send directly to the buyer the license activator named as the object (no mod, no transf). The main transaction is between two other users (the buyer and the seller allowed to distribute the product I own the license), so I can only receive the advice of received splitted amount from the seller name, but cannot know who is the buyer and the object purcheased. I have already wrote an independent vendor script, but for clear reasons I'm serching a solution for integration with the mostly used vendor system.
  13. I made some test and I noticed the rezzed activator will send code and receive response both, if the product to activate is rezzed or even if attached as hud
×
×
  • Create New...