Jump to content

Emery94

Resident
  • Posts

    6
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. There are several systems, some of them free, that do the same. But all of then use public key servers like the one of W-HAT or gridpersister. But those depend on the willingness of the owners of the web to keep them open. They can be closed in any moment. Best if to use your own server, you do not even need to know PHP, just put the server's key in a text file and make http call to read that text file..
  2. But i never subscribed to a group. Perhaps i was detected by a radar, or perhaps clicking to receive a gift in any site, but consciously i do not subscribed to any of those groups. Only to Standards linden groups. I muted the owner of object ago a month, but i still receiving messages.
  3. I am receiving spam from a tool named HippoGroups. The client shows me a name of an object sending the spam and the owner, but muting the owner i am still receiving the spam. It is not possible to mute it muting the owner, i tried too muting the creator and the owner of hippogroups. I want to mute ALL hippo groups to avoid receive spam from ever from that tool. But how?
  4. I am new using Blender. I just create a building, uploaded and walls are not visible from inside of building.What have I done wrong?. In Blender, walls have two sides, (the left of image), regards
  5. The principle of operation is very simple. If a region is not running, the scripts do not work, and the prim where is stops flashing. Sometimes when a region crash we can take many minutes in realize. Just we note that no one says anything until the window appears saying that we are disconnected or when we encourage to write something and does not appear in chat. This script is added to a little prim and weared in a HUD position. This script only work in parcels with script permissions. integer gbGreen = FALSE; list glItems = [ "|", "/", "-", "\\" ]; integer giPos = 0; default { state_entry() { llSetTimerEvent(1.0); } timer() { llSetText(llList2String(glItems, giPos), <1.0, 1.0, 1.0>, 1.0); giPos = (giPos + 1) % 4; if (gbGreen == TRUE) { llSetColor(<1.0, 0.0, 0.0>, ALL_SIDES); gbGreen = FALSE; } else { llSetColor(<0.0, 1.0, 0.0>, ALL_SIDES); gbGreen = TRUE; } } }
  6. When you logged on, there was much lag in the region and it was impossible rez objects from the inventory but you still able to create new prims?. If reply is yes probably was an attack named sim bombing. If you are able to put items in your HUDs try to put a script to running other scripts using llSetScriptstate()
×
×
  • Create New...