Jump to content

Ewadir

Resident
  • Posts

    35
  • Joined

  • Last visited

Everything posted by Ewadir

  1. Wow, thank you very much for all good information, bookmarked for future reference. This is the root of the problem. I tried to link my verified PayPal account to LL (verified and used for operations both in my currency and US dollar) so I could finally have Payment Info and open a store, but it never worked for me. PayPal asks for credit card information. First, I don't have and I don't want a credit card. Second, many people in this forum told me they were able to link their PP accounts, even without cc info. I suppose it's an issue about my bank (I live in Brazil). So, unless I ask for a credit card just for that, I won't have Payment Info so soon, maybe never.
  2. As I said before somewhere in this forum, I was never able to link my PayPal account to Linden Labs, so I still can't open a store - I'm producing tattoos for friends and I would like to make it "professional". Someone told me to try Caspervend system, so can anyone experienced explain the basics on how it works? Do I still need to link my PayPal to Linden Labs? Can I use Caspervend to sell my creation not owning land/store? If yes, I suppose they have a tax, right? I know I can simple browse their extensive FAQs and a wiki, but I would like to see opinions of users. Thank you.
  3. Unless they don't sell something saying "permanent updates" or something, I don't think will be fair to sell the same one with a major update.
  4. Somos dois. Abri ticket sobre isso com a LL e com o PP. Nada. Impressionante é que meu PP serve para praticamente tudo. Pago Facebook, recebo de empresas de fora. Mas só a LL não aceita.
  5. My fault. I was sure this was the People > General Discussion... Thank you again. (Any moderator able to move it, feel free).
  6. The warning is done, I just need to set the outside source. Sounds like the best way, since there is no way to provide note links "P2P", let's say. That's a good one, except the fact that I don't log daily, so I would really need trustable managers. Sadly the land solution is great, but far from my "the wanderer" reality LOL Thank you for the ideas.
  7. I feel stupid since I'm here (SL I mean) for almost a full year and still don't know some basic tricks. I have a group. This group is ahn... adult oriented, so we need to have clear rules BEFORE people decide to join to prevent tons of drama. How can I make the notecard available to everyone before it? (I know there is an area for group notices, but I need to let people check rules before joining.) Maybe I should create a blog elsewhere with the rules and link it on group description? Will it work?
  8. I have large experience with Photoshop and Illustrator, but little to none with 3D softwares. Following recommendations, I'm using Mudbox to apply the texture/tattoo as stencil, and export the uv as a Photoshop file, so the tattoo doesn't get too flat. For a localized tattoo, it's great. But it's almost impossible to make it seamless. The distortion to wrap the surface makes very difficult to reposition the stencil exactly on the edge of the previous application. Is there any developer here to tell me if I'm doing something wrong? Is Mudbox the right tool, the one you use? Or is it possible to wrap an arm, for example, with the stencil?
  9. It wasn't really clear. The correct term should be "wearer" and not "user". So yes, I'm trying to animate the one who wears the HUD. *** Thank you, but it doesn't work for me this way. Anyway, it's working this way: default { state_entry() { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); [...] and... else if (message == "Hate") { llStartAnimation("hate"); [...] It's working simple as that. Not sure about caveats, still testing. Unbelievably easy
  10. Ok, abusing your patience, but I'm really trying to learn it. In your previous explanation, you told me that: attach(key id) { if(id) llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } This must be on 'default', so it gives permission for any animation on the attach event, and any time later, right? Then, "at any point later when you would need to play an animation, you can simply call llStartAnimation". I tried exactly this right now, same error of "script trying to trigger animations but PERMISSION_TRIGGER_ANIMATION permission not set"...
  11. Still not working, I'll let here a more complete code so maybe someone can point me where I'm doing wrong. My intention is: when person who wears the object clicks "hate" or "love" in response to the HUD, his or her avatar will play an animation. Example: a poke, you can like or hate, and react accordingly (it's more a study, don't take it so seriously as a finished idea of product): list openChoices = ["Love", "Hate", "-"]; string dialogInfo; key toucherID; key ownerID; integer channelDialog; integer listenHandle; integer onoff; string thaName; string ownerName; default { attach(key id) { if(id) llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } state_entry() { // generates a negative non-zero from the last 7 digits of the UUID of the object. Zero = public channel. channelDialog = -1 - (integer)("0x" + llGetSubString( (string)llGetKey(), -7, -1) ); // set owner of the object ownerID = llGetOwner(); ownerName = llKey2Name(ownerID); } touch_start(integer num_detected) { // detect toucher id and retrieve uuid, so dialog will be show only to him/her toucherID = llDetectedKey(0); thaName = llKey2Name(toucherID); // remove any previous llListenRemove(listenHandle); // dialog text if (toucherID == ownerID) { dialogInfo = "\nPokes itself"; } else { // if other person, check profile dialogInfo = "\n"+ thaName +" poked itself"; // show profile llInstantMessage(ownerID, "Check profile: secondlife:///app/agent/"+(string)toucherID+"/about"); // warn 'poker' person is thinking about it llInstantMessage(toucherID, "The person is thinking about that..."); } // listen open listenHandle = llListen(channelDialog, "", ownerID, ""); // create dialog in that channel llDialog(ownerID, dialogInfo, openChoices, channelDialog); // setting time limit for response llSetTimerEvent(30.0); } listen(integer channel, string name, key id, string message) { if (message == "-") { // in case we reopen the dialog, return now before removing the listener llDialog(ownerID, dialogInfo, openChoices, channelDialog); return; } // Turn off listener at a convenient common junction llListenRemove(listenHandle); // stop timer since the menu was clicked llSetTimerEvent(0); if (message == "Love") { // default message llInstantMessage(ownerID, thaName+" poked you and you love it."); // other person? Warn if (toucherID != ownerID) { llInstantMessage(toucherID, "The owner loved it"); } } else if (message == "Hate") { llInstantMessage(toucherID, "The owner HATED it, don't do it again!"); // I know it's not here, but this is where it must happen, but I have no idea how :) run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("Walkpose"); llSetTimerEvent(14.0); } } } else { // do something else. } } timer() { llSetTimerEvent(0); // stop timer llListenRemove(listenHandle); llWhisper(0, "Time out!"); } }
  12. I guess I'm using the wrong function... The right one seems to be http://wiki.secondlife.com/wiki/LlStartObjectAnimation (not working at the moment, anyway LOL) else if (message == "Hate") { llInstantMessage(toucherID, "HATED it!"); llStartObjectAnimation("AnimationName"); }
  13. It returns a "syntax error" on Line 101, that is: run_time_permissions(integer perm) {
  14. Yes, like this? touch_start(integer num_detected) { llRequestPermissions(llDetectedKey(0), PERMISSION_TRIGGER_ANIMATION); // from object owner
  15. Hello. I'm creating an item to wear and let other avatars touch you, then user will react with love or hate. The HUD is working OK. The problem is: after wearer's response, the avatar must react with an animation of love or disgust. I'm struggling to start the animation, probably something about permissions. Question: - How can I start the animation without asking for permission? Or will it happen automatically? - Am I using the wrong function (llStartAnimation)? Excerpt: else if (message == "Hate") { llInstantMessage(toucherID, "HATED IT!"); // to person who touched you run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("animation_name"); llOwnerSay("test: end in 5 seconds"); llSetTimerEvent(5.0); } timer() { llSetTimerEvent(0.0); llStopAnimation("animation_name"); } } } Thank you.
  16. Thank you for the suggestion. To be honest, I don't even see this option :P Maybe because my PP account is already with both currencies. I'll see if this is possible (add funds in a different currency from my bank, what would involve an exchange operation). Some people said their account is zeroed, so to illustrate, this is my current balance: 0 USD and some BRL (that PP insist in show in USD because I changed the "default currency". No luck, anyway.
  17. How can I make "enough to cover the premium" if I can't even start to sell, to begin with? Maybe I didn't get your point.
  18. Não sei se é "enrolação", tem experiência com isso ou é só palpite? Foi uma resposta passada a mim por um canal oficial do PayPal. Como educadamente expliquei ao longo do post, não quero e não vou vincular cartão porque NÃO TENHO, NÃO QUERO TER cartão, e NÃO VOU arrumar um só por causa de SL. E para realizar operações de venda de itens, eu precisaria da loja. A não ser que você tenha uma sugestão mais útil.
  19. Ok, now I have an official answer from PayPal. The problem is: depending on which bank is linked to our PayPal account, transactions in other currencies will be denied. Since it's a USD operation (even I'm not buying nothing at the moment) and my bank is Brazilian (BRL), the operation is denied. They advise was to get a prepaid virtual credit card. This is really strange to me. I've received USD payments in the same account before, and PayPal was a gate before sending the money to my bank. They are talking like if any Linden Lab money would be taken or put directly in my account, with no prior processing. So what would PayPal be useful for? Anyway, I'll try the virtual card. Thanks for all responses. *** Para qualquer lusófono ou residente de outros países interessados, a resposta oficial do PayPal é que dependendo do banco que foi vinculado à sua conta, a transação é negada, pois o banco não aceita operações em moedas estrangeiras. O conselho do PP foi que, caso você não tenha ou não queira um cartão de crédito, obtenha um cartão pré-pago para completar a tarefa.
  20. Está sem informação de pagamento... porque não consigo inserir a informação de pagamento =D Li vários tópicos por aqui, e parece lugar-comum que qualquer conta PayPal, mesmo sem qualquer transação ou saldo, pode ser usada para vínculo com o site da Linden Research. A maioria dos usuários relata não ter vinculado o cartão, então não faz o menor sentido que o PayPal exija um cartão para tal operação. Ligaram pra mim hoje mas não estava em casa, estou aguardando outro contado deles (PP). O ticket seria para perguntar porque o PayPal está tratando a operação como uma "purchase", já que não estou comprando nada.
  21. Sorry if it's a stupid question. I'm creating my first tattoos, thinking in selling it in near future. So I learned how appliers work, and have something yet working with Maitreya, Altamura and Omega. BUT if I want to create the same tattoo in different opacities when applying, can I do it via card/script? Can the layer opacity over skin be controlled, or I am required to upload, for example, three times the same image already in different opacities? Thank you.
  22. I tried to contact PayPal yesterday, no response until now. There is a video on YT saying PP is not making payments without a credit card, even if you have a bank account, since 2016. Not convinced, I changed my default PP currency to USD and tried to open my store again. No deal: keeps asking for a credit card. I hate credit cards, so no store for me. I'd be really pissed off trying the 25 USD trick just to be asked for a cc again. EDIT: and for some reason, I just realize I can't open tickets in Linden Labs site, as suggested by LittleMe Jewel. I try it, but they are not created.
  23. Seems to me like a PP issue, my account is active, verified, I get freelancer work payments usually. I'll try with PP first and later update here for anyone with the same problem. Thank you all. My PP balance is in Brazilian Real, maybe that's the point. I had similar problem with Steam years ago.
  24. It is verified (bank account), used it many times to get and do payments. Now it's requiring card. Maybe PP have changed.
  25. That's weird, PayPal issue I suppose. In https://secondlife.com/my/account/billing.php, then in https://cashier.secondlife.com/addpaypal?lang=pt-BR, it asks me to link the PP account, but PP is working like if I was buying something, requiring a credit card with a message "Add a credit card to complete your purchase"...
×
×
  • Create New...