Jump to content

AnaZofia

Resident
  • Posts

    16
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. I got an error message on this script: " Name not defined within scope", on the "if (primName == name) // check the name" line What is wrong with the script? SetATexture(string to, string from) { integer i; // defaults to zero integer j = llGetNumberOfPrims(); for (; i < j; i++) // scan over all prims from 0 to Number of Prims (1 or more) { string primName = llGetLinkName(i); // get the name of the prim if (primName == name) // check the name { llSettexture(name, ALL_SIDES); // set the alpha we were sent } } }
  2. hi yes and how do i find it.. there are several ppl that are rezzing on my sim
  3. I have some strange media playing once and a while, automatic on my sim how can i remove it? / Track it?
  4. have maked a big script, and in that script it is particle effects how can i give user option to turn on/off particles in a menu as option?
  5. thanks! Worked! (sy for beeing newbie) Topic solved
  6. hmmm.. how can i get the free amount box to show up in the same payment ?
  7. sorry! it worked now! haha i did not set the script to running thanks so mutch for help i have given Cudos points
  8. didnt work the pay button did not show up on "right click"
  9. I cant get it to work... can you please help me? integer CHANNEL = 55;integer total;generalParticleEmitterOn() (xxx cutted long script)default{ on_rez(integer s) {// llResetScript(); } state_entry() { updateText();// {generalParticleEmitterOn(); llListen(CHANNEL, "", llGetOwner(), ""); } money (key giver, integer amount) { llSay(0, "Thanks for the " + (string)amount + "L$, " + llKey2Name(giver)); total+=amount; updateText(); generalParticleEmitterOn(); } touch_start(integer count) { if(llDetectedKey(0)==llGetOwner()) { llDialog(llDetectedKey(0), "Clear total amount?", ["Yes","No"], CHANNEL); } } listen(integer channel, string name, key id, string message) { if( message=="Yes" && id==llGetOwner() ) { total = 0; updateText(); } }}
  10. How do i set pay amount in a script i want the pay buttons to be 25, 100, 250, 500
  11. How to i start a particle effect i have made, when someone pays , my vendor?
  12. I have a script that listen for incoming message (/10 text) on channel 10 The message from users wil be like: message, ID, message example: /10 hi, JKY67, is the name (the, JKY67, is the id and will be different every time. The id is not a uuid key or avatar name)) answer i want from my script: you, JKY67, must try this How can i pick up the ID (...., ID ,.....) that is between "," and insert that ID in the answer i post back to the user?
  13. Tanks to both of you! It worked now
×
×
  • Create New...