2010年2月24日水曜日

2010年1月31日日曜日

Album (Book) script

//Prim book scripts, animate a 3d prim book
//Copyright (C) 2005 Issarlk
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Foundation; either version 2
//of the License, or (at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 
//Keep closed position in memory, so as to not have the book slowly
//changing position as it get openned and closed because of math
//precission
vector initialPos;
rotation initialRot;
 
//Keep the cover's size in memory, we send it to newly rezzed pages
//so they adjust their size accordingly
vector coversize;
 
//List of keys of our pages, used to recognise messages aimed at us
//(allows several books to be used next to one another without interferences)
list page_keys;
//commands to send to a page
list page_commands;
 
integer page_listener_id = 0;
 
//Comments for each page, display next to pointer
//Filled from notecard
list pagecomments;
 
//Type of page naming.
integer pagenaming; //0=numerical 1=alphabetic order
list pagetexturenames = []; //used for alphabetic order
 
//notecard reading
integer line;
key queryid;
 
 
 
 
init()
{
initialPos = llGetPos();
initialRot = llGetRot();
page_keys = [];
page_commands = [];
pagecomments = [];
llListenRemove(page_listener_id);
page_listener_id = 0;
//tell backcovers that the book is closed
llMessageLinked(LINK_ALL_OTHERS, 0, "closed", NULL_KEY);
//tell cover to tell everyone its size
askCoverSize();
}
 
 
// utility functions to manage an array of pages and their info
setPage(integer number, key id)
{
resetPage(number);
page_keys = llListInsertList(page_keys, [number, id], llGetListLength(page_keys));
}
 
resetPage(integer number)
{
integer tmppagepos = llListFindList(page_keys, [number]);
if (tmppagepos != -1)
{
page_keys = llDeleteSubList(page_keys, tmppagepos, tmppagepos+1);
}
}
 
key getPage(integer number)
{
integer tmppagepos = llListFindList(page_keys, [number]);
return llList2Key(page_keys, tmppagepos+1);
}
 
integer getPageNumber(key id)
{
integer tmppagepos = llListFindList(page_keys, [id]);
if (tmppagepos == -1)
{
llWhisper(0, "error, number of page "+ (string)id + " not fouund");
}
return llList2Integer(page_keys, tmppagepos - 1);
}
 
integer hasPageCommands(integer number)
{
if (llListFindList(page_commands, [number]) == -1)
{
return FALSE;
}
else
{
return TRUE;
}
}
 
setPageCommands(integer number, string commands)
{
resetPageCommands(number);
page_commands = llListInsertList(page_commands, [number, commands], llGetListLength(page_commands));
}
 
string getPageCommands(integer number)
{
integer tmppagepos = llListFindList(page_commands, [number]);
return llList2String(page_commands, tmppagepos+1);
}
 
resetPageCommands(integer number)
{
integer tmppagepos = llListFindList(page_commands, [number]);
if (tmppagepos != -1)
{
page_commands = llDeleteSubList(page_commands, tmppagepos, tmppagepos+1);
}
}
 
//in case two book are near, check if an id we hear talking is one of our page
integer isOurPage(key id)
{
if (llListFindList(page_keys, [id]) == -1)
{
//not one of our pages
return FALSE;
}
else
{
//one of our pages
return TRUE;
}
}
 
 
//open book
open()
{
//tell backcovers we are openning, backcover will turn transparent
llMessageLinked(LINK_ALL_OTHERS, 0, "open1", NULL_KEY);
//rotate book
llSetRot(llEuler2Rot(<0, 0, PI_BY_TWO>)*initialRot);
llSetRot(llEuler2Rot(<0, 0, PI>)*initialRot);
//tell backcovers we are open, backcover open version will turn visible
llMessageLinked(LINK_ALL_OTHERS, 0, "open", NULL_KEY);
}
 
 
//same, but closes
close()
{
//kill all pages in world
kill_all_pages();
//close book
//tell backcovers we are closing, backcover open version will turn transparent
llMessageLinked(LINK_ALL_OTHERS, 0, "close1", NULL_KEY);
//rotate book
llSetRot(llEuler2Rot(<0, 0, PI_BY_TWO>)*initialRot);
llSetRot(initialRot);
llSetPos(initialPos);
//tell backcovrs we are closed, backcover wil turn visible
llMessageLinked(LINK_ALL_OTHERS, 0, "closed", NULL_KEY);
}
 
//rez a page
//number is number of page
//open tells if page is on the left (when you browse the book backward) or the righ (normal reading)
//commands is various commands to send to the page, not used
rez_page(integer number, integer open, string commands)
{
rotation tmprot = llGetRootRotation();
if (open)
{
//had a command so the page know its already on the left
setPageCommands(number, "alreadyopen");
}
else
{
//Page is open, rotate it on its z axis
tmprot = llEuler2Rot(<0, 0, PI>) * tmprot;
resetPageCommands(number);
}
 
llRezAtRoot("Page", llGetRootPosition(), ZERO_VECTOR, tmprot, number);
}
 
//kill a page that is no longer visible.
kill_page(integer number)
{
//tell it to die
llWhisper(101,(string)getPage(number)+",die");
//remove from lists
resetPage(number);
resetPageCommands(number);
}
 
//cleanup when book closes
kill_all_pages()
{
integer i;
for (i=llGetListLength(page_keys) - 2 ; i >= 0 ; i-=2)
{
kill_page(llList2Integer(page_keys, i));
}
}
 
//send commands to a page, to tell it which texture to use and so on
send_page_commands(integer number)
{
//send page commands
if (hasPageCommands(number))
{
string commands = getPageCommands(number);
send_page_command(number, commands);
}
//set size
send_page_command(number, llList2CSV(["size", coversize]));
//set texture
list textures = texturesForPage(number);
key idtexture = llGetInventoryKey(llList2String(textures, 0));
if (idtexture != NULL_KEY)
{
send_page_command(number, "texturefront,"+(string)idtexture);
}
//textures must be copy mod transfer, or else it doesnt work
idtexture = llGetInventoryKey(llList2String(textures, 1));
if (idtexture != NULL_KEY)
{
send_page_command(number, "textureback,"+(string)idtexture);
}
integer nbofcom = llGetListLength(pagecomments);
//send page descriptions
if ((number - 1)*2 < nbofcom)
{
send_page_command(number, "descfront,"+llList2String(pagecomments, (number - 1)*2));
}
if ((number - 1)*2+1 < nbofcom)
{
send_page_command(number, "descback,"+llList2String(pagecomments, (number - 1)*2+1));
}
}
 
send_page_command(integer number, string command)
{
key id = getPage(number);
llWhisper(101, llList2CSV([id,command]));
}
 
//Return texture name by its number
string textureNumber(integer number) {
if (pagenaming == 0) {
//numeric order, pages are named "page1" "page2" etc.
return "page"+(string)number;
} else {
return llList2String(pagetexturenames, number - 1);
}
}
 
 
//Read texture names for alphabetical mode
loadTextureList() {
integer nb = llGetInventoryNumber(INVENTORY_TEXTURE);
integer i;
pagetexturenames = [];
for (i = 0 ; i < nb ; i++) {
pagetexturenames = pagetexturenames + [llGetInventoryName(INVENTORY_TEXTURE, i)];
}
}
 
//return texture names that are supposed to go into page
list texturesForPage(integer pagenumber) {
return [textureNumber(pagenumber * 2 - 1), textureNumber(pagenumber * 2)];
}
 
 
//Check inventory to see if page exist
integer pageExists(integer pagenumber) {
list textures = texturesForPage(pagenumber);
if ((llGetInventoryType(llList2String(textures, 0)) == INVENTORY_TEXTURE) || (llGetInventoryType(llList2String(textures, 1)) == INVENTORY_TEXTURE)) {
//page exists
return 1;
} else {
//page doesn't exist (no texture to display)
return 0;
}
}
 
 
//Ask cover about its size
askCoverSize() {
llMessageLinked(LINK_ALL_OTHERS, 0, "get cover size", NULL_KEY);
}
 
 
//////////////////////
// States
//////////////////////
 
default
{
state_entry()
{
init();
}
 
on_rez(integer start_param)
{
init();
}
 
link_message(integer sender, integer num, string str, key id) {
//receive cover size
if (num == 10) {
coversize = (vector)str;
state readcomments;
}
}
 
changed(integer change) {
if ((change & CHANGED_SCALE) != 0) {
askCoverSize();
}
}
}
 
state readcomments {
state_entry() {
if (llGetInventoryType("Comments") != INVENTORY_NOTECARD) {
//No comments notecard
state readsettings;
} else {
line = 0;
queryid = llGetNotecardLine("Comments", line);
}
}
 
dataserver(key queryidarg, string data) {
if (queryidarg == queryid) {
if (data != EOF) {
//Read one comment, append to list
pagecomments = pagecomments + [data];
//read next
line++;
queryid = llGetNotecardLine("Comments", line);
} else {
//No more comments
state readsettings;
}
}
}
}
 
state readsettings {
state_entry() {
if (llGetInventoryType("Settings") != INVENTORY_NOTECARD) {
//No settings
state closed;
} else {
line = 0;
queryid = llGetNotecardLine("Settings", line);
}
}
 
dataserver(key queryidarg, string data) {
if (queryidarg == queryid) {
if (data != EOF) {
list settingline = llParseString2List(data,[":"],[]);
if (llList2String(settingline, 0) == "PageNaming") {
//alternate page naming
string naming = llList2String(settingline, 1);
if (naming == "alphabetical") {
pagenaming = 1;
loadTextureList();
} else if (naming == "numerical") {
pagenaming = 0;
} else {
llOwnerSay("Unknown PageNaming: " + naming);
}
}
//read next
line++;
queryid = llGetNotecardLine("Settings", line);
} else {
//No more settings
state closed;
}
}
}
}
 
state closed
{
touch_start(integer total_number)
{
open();
state opened;
}
 
moving_end()
{
//book moved, remember new pos
initialPos = llGetPos();
initialRot = llGetRot();
}
 
 
link_message(integer sender_number, integer number, string message, key id)
{
if (number == 10) {
//new cover size
coversize = (vector)message;
} else if (message == "user clicked cover")
{
//the cover tells us user clicked: open book
open();
state opened;
}
}
 
changed(integer change) {
if ((change & CHANGED_SCALE) != 0) {
//size changed, tell cover to tell everyone its new size
askCoverSize();
}
}
}
 
 
state opened
{
state_entry()
{
llListenRemove(page_listener_id);
page_listener_id = llListen(102, "", NULL_KEY, "");
rez_page(1, FALSE, "");
}
 
touch_start(integer total_number)
{
//user clicked book, close
close();
state closed;
}
 
link_message(integer sender_number, integer number, string message, key id)
{
if (number == 10) {
//new cover size
coversize = (vector)message;
} else if (message == "user clicked cover") {
//user clicked cover: close
close();
state closed;
}
}
 
object_rez(key id)
{
//page rezed, put it in our array
string tmpobjname = llKey2Name(id);
//page number is in its name
integer pagenumber = (integer)llGetSubString(tmpobjname, 5, -1);
setPage(pagenumber, id);
//send commands to page so it displays the good texture and descriptions
send_page_commands(pagenumber);
}
 
listen(integer channel, string name, key id, string message)
{
//skip if not sent by one of our pages
if (!isOurPage(id))
{
return;
}
integer tmppagenumber = getPageNumber(id);
//one of our pages tell us something
if (llGetSubString(message, 0, 9) == "pageopened")
{
//The page has been flipped to the left, time to display next one
//rez next page
integer tmpnextpagenumber = tmppagenumber + 1;
if (pageExists(tmpnextpagenumber))
{
rez_page(tmpnextpagenumber, FALSE, "");
}
integer tmppreviouspagenumber = tmppagenumber - 1;
if ( tmppreviouspagenumber > 0)
{
//tell previous page to die, it is no longer visible
kill_page(tmppreviouspagenumber);
}
}
else if (llGetSubString(message, 0, 9) == "pageclosed")
{
//The page has been flipped to the right, time to display the previous one
//rez previous page
integer tmppreviouspagenumber = tmppagenumber - 1;
if (tmppreviouspagenumber > 0)
{
rez_page(tmppreviouspagenumber, TRUE, "");
}
integer tmpnextpagenumber = tmppagenumber + 1;
if ( pageExists(tmpnextpagenumber) )
{
//tell next page to die
kill_page(tmpnextpagenumber);
}
}
}
 
moving_end()
{
//book moved, remember new pos ; rotate by PI so we remember closed pos
initialPos = llGetPos();
initialRot = llEuler2Rot(<0,0, - PI>) * llGetRot();
}
 
changed(integer change) {
if ((change & CHANGED_SCALE) != 0) {
//size changed, tell cover to tell everyone its new size
askCoverSize();
}
}
 
state_exit()
{
//clean up listener
llListenRemove(page_listener_id);
}
}

2010年1月24日日曜日

Broken Prefab

Broken Prefab
~ with Multi Animations Chair ~
The visible wall is disturbed. . Broken is Good:P



===LISA+SMILE+ PRESENTS===
Contents
・Broken Prefab is maked with original sculpted prims.
・Broken Table(Sculp)
・Broken Bookshelf(Sculp)
・Multi Animations Chair(Sculp)10 sit anime

keywords:broken decay depravity decline ebb decadence decadency decrease
failure consumption ruin degeneration evil baseness degradation corruption
collapse decomposition aged Antique old

275L$
27Prim

[url=http://slurl.com/secondlife/Quentin/79/169/44]Visit My shop in SL![/url]
[url=http://slblogtrackbacker.blogspot.com/]Visit My blogspot![/url]
[url=https://www.xstreetsl.com/modules.php?name=Marketplace&MerchantID=388596]LisaProduct![/url]










----
cassé. déchéance. dépravation. reflux du déclin. décadence. decadency. échec de la baisse. consommation. ruine. dégénérescence. mal. bassesse .degradation. corruption. écroulez-vous. décomposition. .Antique âgé. vieux
----
gebrochen. Verfall. Verworfenheit. Rückgangsebbe. Dekadenz. decadency. Abnahmemißerfolg. Verbrauch. Untergang. Degeneration. bös. Niederträchtigkeit .degradation. Korruption. brechen Sie zusammen. Zersetzung. alter .Antique. alt
----
rotto. decada. la depravazione. declino di ribasso. la decadenza. il decadency. fallimento di calo. il consumo. la rovina. la degenerazione. cattivo. la bassezza morale .degradation. la corruzione. il crollo. la decomposizione. .Antique anziano. vecchio
----
roto. el decaimiento. la depravación. el menguante de declive. la decadencia. el decadency. el fracaso de disminución. el consumo. la ruina. la degeneración. malo. la bajeza .degradation. la corrupción. el derrumbamiento. la descomposición. .Antique viejo. viejo
----
quebrado. decadência. depravação. diminuição de declínio. decadência. decadency. fracasso de diminuição. consumo. ruína. degeneração. mal. baixeza .degradation. corrupção. se desmorone. decomposição. .Antique velho. velho

2010年1月13日水曜日

制作の教育パネルL$8000

今日はThe Sojournerさんパネルの話です。

サンドボックスが少なくなっている中、教書パネルを
見つけました。
スクリはリンクタッチで画像が切り替わるだけです。
なんの変哲も無いパネル。

感謝の気持ちも込めて高額ですが購入しました。
そして今うちのサンドボックスに設置しました。
(全60prim。。。私なら8primで出来るわっ)
もう一度、復習して、どこか寄付しようと思ってます;))



それと少ないプリム数ですが、サンドボックスを2時間リターンで開放しました。

2010年1月5日火曜日

hippoRENTの使い方(その1)

使い方の日本語が見つけられなかったので、整理して書こうと思ってます。
今は、途中です。すみませんが時間をくださいね。

================================================================
hippoRENT Complete v5.52
Designed and Developed by Andy Enfield
c 2009 Hippo Technologies
View these instructions online at
手順は下記のアドレスに!
http://www.hippo-technologies.co.uk/resources/hipporent/web.php
================================================================

GETTING STARTED
使用前に

************************************************************************************
! NEW: hippoGROUPS の相互乗り入れ !
新しい"hippoGROUPS"製品を使用することで、あなたのテナントやグループ管理を容易にします。
レンタルBOXを追加するのも自動的にWEB側に追加されるし、WEB側でのテナントの管理・削除も容易です。
大規模テナントの管理が行えます。詳しくは下記アドレスをクリック
http://www.hippo-technologies.co.uk/products/hippogroups/
http://www.hippo-technologies.co.uk/resources/hippogroups/hippogroups.php#pt5_2
************************************************************************************

1. CREATING A WEBSITE ACCOUNT
Webサイトのアカウントの作り方

If you don’t already have a Hippo Technologies website password (e.g. you don’t use one of our other web-enabled products), begin by rezzing the HippoTech Website Registration Pass.
オブジェクトのHippoTech Website Registration PassをREZします。

Click it and it will connect to our website, create you an account and speak the password to you (via OwnerSay so only you hear it). You can later change this password for something more meaningful, via the ’My Account’ link near the top of pages on the website users’ area. Please don’t ever use your Second Life password, pick a password unique to the Hippo Technologies website.
そのオブジェクトをタッチすると下記のように
8文字のパスワードがもらえます。
[3:36] HippoTech Website Registration Pass: Click me to register with the Hippo Technologies website.
[3:37] HippoTech Website Registration Pass: Contacting Hippo Technologies, one moment please ...
[3:37] HippoTech Website Registration Pass: Thank you for registering. Your password is '********'. (You may change it later if you wish).
[3:37] HippoTech Website Registration Pass: (This message has been sent directly to you, not displayed in open chat).
[3:37] HippoTech Website Registration Pass: You may now visit http://users.hippo-technologies.co.uk/ and login.
WEBサイトにいって、ログインします。
名前は、スペースを入れて入力します。



TIP: If you’re a new user then after creating an account you should re-rez the product carton and touch it again to unpack (you can ignore (don’t mute!) the folder it gives) ... this is because during unpacking it registers you as a hippoRENT user to unlock that part of the website.

Once you’ve got a password, you can later login to http://users.hippo-technologies.co.uk// to make use of the website. Don’t do this quite yet, as there’s nothing to see until you’ve read (2) or (3) below.
ここで、パスワードを変更するのは下記の2と3を読んでから行ってください。

2. THE RENTAL BOX
レンタルボックスの設置
2.1 Getting Started
はじめに
(a) Rez your first rental box, grant it debit permissions, wait for it to load its configuration.
レンタルボックスをREZして
黄色いダイアログで「許可」をします
ボックスの設定が読み込まれます。



(b) Visit the website via users.hippo-technologies.co.uk (see the notes above) and click on the "Rental Boxes" link (under the hippoRENT title) within the hippoRENT part of the website. You’ll see your new box listed along with its location (click this to open an slURL to the location), price, tenant (if any) and time left. There are also three "action" icons which, from left to right, allow you to ...
Webサイトでレンタルボックスの画像をクリックすると
自分自身のページが出てきます。


* Configure a box (the spanner/wrench icon )
スパナ工具のマークは設定です。

* Reload its configuration (click the two-circular-arrows icon)
矢印回転のマークはリロードです。

* Delete it (click the white-cross-in-a-red-circle icon).
×印は、削除です。

Note that a rental box polls the website every 2 hours (or whenever a "change" happens, e.g. a payment). This is important to bear in mind: the time left displayed on the website is not calculated "live" but is reported to the website at two-hourly intervals to avoid lag. Rental boxes do not need the website in order to work (just as before they didn’t need the server) ... so if the connection between Second Life and the wider web breaks for any reason, the rental box will happily carry on doing its thing and will update the website when it next makes contact. All the ”mission-critical” timing of rentals happens inworld.



参考のページ

2.2 Configuring a Rental Box on the Web
Web上のレンタルボックスの設定

Click the spanner/wrench icon and you’ll open the rental box configuration page.
スパナ工具のアイコンをクリックして設定をします。
はじめは大変に思えるけど、基本的なところは従来のノートカードをWEB入力したのと同じなので。。。

テストとして
L$200 per week,Prim500に設定を変更してOKボタンを押してください。

This looks a little daunting at first, with lots of options, but basically its a web version of the configuration notecard you’ve used before, with each set of options grouped together. As with the old style configuration notecards, most can be ignored at first. For now, to get a feel of how things work, try changing the price to L$200 per week and the Prim Allowance to 500. Scroll to the bottom of the page and click OK (or hit enter after entering a text value).

You’ll now see that the circular arrow icon is lit up, to the right of the rental box. This is telling you that the box inworld needs its configuration downloading to match the one on the website. So click the icon and the box inworld will shortly reload its configuration.

あなたは、サークル矢印のアイコンが見えるようになってます。
これは、BOXと不整合があるということです。
不整合を直すためには、クリックしたら良い。

It’s now worth mentioning some useful hints and tips for the configuration screen ...

* Rental boxes can be grouped together for easier management. See our guide to rental box groups:
レンタルボックスのグループ管理について↓
http://www.hippo-technologies.co.uk/resources/hipporent/box_groups.php

* Pictures are stored by key (you can right-click a picture/texture in your inventory and choose "Copy Asset UUID" to get this. Or you can let the box inworld convert a picture name to a key by using the voice command PICTURE: , e.g. PICTURE: My New House. Or, if a rental server you have online has a picture in it, you can pick a picture to use from that.
画像の変更は、UUIDをコピーして
インワールドのチャットコマンドで
PICTURE:
あるいは、あなたのrental server内に画像をもってるならそれを使うことができます。

* Notecards and landmarks can also be chosen from a server, provided you have uploaded some inventory of that type into a rental server (see section 2 above).
ノートやランドマークもrental serverに入れると使うことができます。

* Rent sharing and alternative IMs work by group (not Second Life group!) ? to define a group, click on the “Groups” icon in the left hand tool bar that appears on each page. Create a new group and add people to it by following the onscreen instructions. Note, if you’re only using a group for communications, not for sharing, you can set the Share% for each person to any value you choose --- its only used when rent sharing.
hippoRENT側のグループを作ると分配を個人で設定することができる。

* If you’re unsure what any option/field does, hover your mouse pointer over it to get a useful tooltip. You can also look it up in the Rental Box Guide, as all the web configuration options mirror the equivalent Configuration Card option.
判らないものの上にマウスポインターが来ると説明してくれる。

* You can copy the configuration of a rental box from another very easily. If you have more than one box rezzed, scroll to the bottom of the configuration page. You’ll see the option to "copy this rental box’s configuration from ..." and a pick list of your other rental boxes. Pick the box you wish to use as a source and click “Go”.
1つ設定を作って、他のレンタルボックスにコピーするのは容易です。
まず、レンタルボックスをインワールドでコピーすると、WEBページが増えます。
元のボックス設定を開いて下の方に、"copy this rental box’s configuration from ..."
を選び、あなたが合わせたいレンタルボックスでGoをクリックする

2.3 Commanding and Controlling Rental Boxes from the Web
ウェブからレンタルボックスに命令と制御をします。
If you return to the main rental box screen you will see, at the bottom of the list of rental boxes, a number of controls. The "Refresh List" button does exactly, refreshes the view; useful if you’ve just rezzed a new rental box inworld, for example. To move to the right, "Configure Selected" allows you to configure *multiple rental boxes at once*. Tick the boxes you wish to configure (or use the tick box at the top of the right-hand column to toggle between all and none selected). Then click "Configure Selected", make any changes and they’ll be applied to each selected box. Similarly, "Update Selected" tells the selected rental boxes inworld to update themselves.
あなたがレンタルボックスをSL内で置くと、リフレッシュボタンが出てきます。
(場所のXYZ地点は、小数点以下切捨てです)
リフレッシュボタンは、WEBとSL内の整合してくれます。

設定の変更は、WEBの右側の"Configure Selected"を選択して変更します。
複数のレンタルボックスを選択して同時に設定を変更することも可能です。

最後に同期は、SL内のレンタルボックスで"Update Selected"を選択します

The middle control is more interesting: you’ll see if you click the drop down menu that there are a range of functions. Each is applied to the currently selected rental box or boxes, so select at least one before trying a function. From top to bottom in the list you can:
中級の制御です
メニューをドロップダウンすると見ることができます。
各レンタルボックスで設定が可能です。
機能を試す前に少なくとも1つを最初から最後まで設定のリスト化すると良いと思います。

* Edit Tenancy -> this allows you to change the name of the tenant, the length (days and of those how many are "free" (non-refundable)) and any partner name.
テナントの名前を編集変更です。内容は自由です


* Copy/Move Tenancy to ... -> copy or move the tenancy from any other rented box to the currently selected box(es). See http://www.hippo-technologies.co.uk/resources/hipporent/v5detail/hr5_copying.php for more information.
テナントの名前のコピー・移動です。
他のレンタルボックスから、そのレンタルボックスに・・・途中移動するときに使うのかな??

* Remove Tenant -> boot (silently or with a message) the tenant or refund them.
テナントを削除

* Remove Partner -> remove the partner listed on a rental box.
レンタルボックスに記載された、パートナーリストを削除します。

* Reserve -> reserve a rental box or boxes for a specific person (and for a specific length of time if you wish).
特定の人のための予約です。
予約を入れることで、次のレンタルもその人のみの権限になります。

* Unreserve -> clears a reservation.
予約の取り消しです

* Lock - > locks a rental box so it cannot be paid.
レンタルボックスに支払いできないようにします。

* Unlock -> unlocks a box so it can receive payments once again.
ロックの解除です。

* Lock on End -> tells a box to lock itself once the current tenancy finishes.
最後まで終わったら、次にレンタルできないようにします。

* Configuration Option -> you can send a single configuration option to a box or boxes. This works like the old style voice commands, when sent from the server. So, for example, HOVERTEXT COLOUR: Blue.
設定のオプション
WEB側から、単体のレンタルボックスに限り、ボイスコマンドを送信することができます。
たとえば、HOVERTEXT COLOUR: Blue

* Request Latest Status -> tells a rental box to ping the website with its latest status (useful if you’d like the very latest tenancy timings, rather than wait for the next two-hourly update).
通常の2時間に一度の各レンタルボックスの状態の更新を、最新の設定状態を見る要求をします。

3. THE RENTAL SERVER
レンタルサーバー
The rental server is used to hold notecards (e.g. tenant information notecards), textures/pictures (if you’re using vendors you’ll want to show potential tenants a nice picture of a rental location) and landmarks (if you want to give them out to enquirers). If you’ve used the hippoVEND system, the instructions that now follow will be very familiar indeed. If you don’t plan to load notecards, landmarks or textures remotely, you can skip straight to part 3 below.
レンタルサーバーには、ノートカードやテクスチャー、ランドマークを入れることができます。
そうすることで、あなたのモールが親近感がでてきます。
もしあなたが各種itemをレンタルサーバーに入れる必要がなければ、本3章は飛ばしてください。

Begin by rezzing a hippoRENT Web Server. Wait while it quickly loads its configuration notecard.
hippoRENT Web Serverを置いたときに開始されます。
すぐに設定を読み込みますので、しばらく待ってください。

Right-click it, choose "Edit" (then More>>> if the build dialog box is not fully expanded).
hippoRENT Web Serverを右クリックしてパイメニューの編集を選択してください。

Pick the "Contents" tab and double-click on the ’_config’ notecard to edit it.
中身タブを開き、’_config’ノートカードを編集していきます。

Change the SERVER NAME and PASSWORD to something meaningful in the first case and secure in the second case, for example ...
SERVER NAME: Brownfield Site Rentals Ltd Server 1
PASSWORD: fhfh476343h
まず最初に、サーバーNAMEとパスワードを変更してください。
SERVER NAME: Brownfield Site Rentals Ltd Server 1
PASSWORD: fhfh476343h

You’ll never need to actually remember your password, it’s simply used to protect communications to-and-from the server.
このパスワードは、サーバー間通信を保護するものであり、記憶する必要はありません。

Now close the notecard (you can ignore the other options for now) and save it. Close the Second Life build window, then click the server and choose “Reset” to reload the configuration.
一度、ノートカードを保存SAVEしてください。
そして、SLの制作ウインドウを開き、サーバーをタッチして、“Reset”を選択します。

Add any notecards, landmarks or textures you will want to use to the server by holding down the CTRL key and dragging them to it (make sure you drag to the server, not the tiny round prim on its front).
持ち物からノートカードやテクスチャー、ランドマークをドラックしてサーバーに移します。

Once you’re done, click the server, choose "Go Online" and then click it again and choose "Load Inv". The details of each item will get loaded to the website. ater, when editing rental box configurations, you can use the inventory you’ve loaded in here and quickly pick it.
もう一度サーバーをタッチして、"Go Online" を選択します。
次に、もう一度サーバーにタッチしてLoad Inv"を選択します。

各レンタルボックスへの要否は、あとからWEB側で設定します。
もし、他のものをロードしたかったら同様にしなさい。

Important Note: You must have full permissions on items you want to give out from a hippoRENT server. (The permissions you set for the *next owner* can be anything you wish).

注意
サーバーへ入れるものは、すべてフルパーミッションでなければならない!!

If you now log into the website (visit http://users.hippo-technologies.co.uk/) with your name and password. Click on the hippoRENT icon (the large rental box) and click on "Rental Servers" (under the large hippoRENT title at the top of the page). You should now find yourself on the "Servers and Inventory" page. Each server is listed at the top of the page and inventory items in the table beneath. You can, should you wish, do a number of things here:
Examine just one server’s contents (if you have more than one) by clicking on its name.
さて
あなたはWEB側で、今行ったサーバーへの目録が確認することができます。
①WEB側サーバーへログインします。
②hippoRENT iconをクリックします。
③Rental Servers(トップページのタイトルのすぐ下)をクリックします。
各サーバーの目録リストが表示されます。

* Click a server’s location to open an slURL to that map position.

* Turn a server online or offline by clicking its status.

* Delete a server by clicking the red X icon to the right of its name.

* Reload a server’s inventory by clicking the circular arrow icon next to the delete icon.

* Deliver an item of inventory to somebody by clicking the arrow-in-a-circle icon to the right of that inventory item, then entering the name (exactly as it appears in Second Life) of the recipient and clicking ’Deliver’.
まぁ、そこでいろいろ確認することができます^^;


4. THE RENTAL VENDOR
レンタルベンダー
Rental vendors are simplicity itself to use. Once you’ve got at least one box set up with a picture, rez a vendor.
レンタルベンダーの使い方は簡単です。
一度、ベンダーを設置して、画像を設定すればよい。
以下うんぬん。たぶん企業違うし使わんなっ!!
Once you’ve rezzed a vendor you can see it listed by clicking on “Rental Vendors” under the hippoRENT banner on the main website. Each vendor is listed with its name, location (click for an slURL link), the properties it will show, its status (offline or online; click the status to flip it online or offline) and a set of action icons which you should already by now be familiar with.

Configure your vendor by clicking the spanner icon (). You’ll see options for how hovertext looks (on, off, or smart (it appears when the vendor is used and then vanishes)) and whether the vendor speaks the property details in chat. Beneath this, you can filter which properties appear in this vendor ? by status or by using some filter text. If you use the latter, the vendor will only show properties whose name or location contains the text you enter here. Finally, the ‘Behaviour When Inactive’ section lets you setup slideshow mode (the vendor will cycle through properties when not used).

Click OK to save the vendor configuration then click the circular arrow button to download the configuration to the vendor inworld (it will automatically turn online at this point).


5. PAYMENT LOGS
支払いのログ
The fourth part of the website are the payment logs (click “Payment Logs” under the hippoRENT title at the top of a page). You’ll see each payment made to one of your rental boxes, listed with the date, time, name of the rental location, the inworld location, the tenant name and the amount paid (negative if it was a refund). Any proxy payments (friends paying for a tenant) have a little [P] icon next to the name of the tenant -- hold the mouse over this to see a tooltip with the payee’s name.
トップページの“Payment Logs”をクリックすると支払い状況がみれます。
誰がいつ、いくら支払ったかなどです。
ここの情報も[P]アイコンを押すことで確認するすることが出来ます。


You can do a number of useful things on this page:
このページはあなたにとって役立つことが多いでしょう!

* Sort information (use the arrows on the column tops).
情報のソートが出来ます。

* Filter just the information you want (click the ’Filter’ button, enter some criteria, click ’OK’).
あなたがほしい情報にフィルターを掛けることもできます。

* Use the grouping tools in the right hand column to group payments by date, rental name, location, tenant etc.
一日事の収入なども確認できます。

* Export to CSV will produce a text-only version of the data that can, if you know about these things, be easily dumped into a programme like Microsoft Excel for more sophisticated analysis.
CSV形式でデータをエクスポートすることも出来ます。
エクセルなどで解析することが容易です。

6. PREFERENCES PAGE
実行中にいろいろ対応する手段のページです

The final page within the hippoRENT website allows you to control several aspects of how your rental system looks and behaves. Simply tick any options you wish to turn on, untick those you wish to disable and click OK to save your changes.
レンタルモールを運用していると色々な局面に出会います。
その時に、この最終的なページの設定を変えることで解決することも多いと思います。

* Show Land Parcel Names
- Boxes report the name and size of the land parcel they’re sitting on and, if you wish, you can choose to display this in your box list (and if you export the box list to CSV).
レンタルボックスの位置

* Show Rental Box Version
- Turn this on and each box will now displays its software version underneath its name in the box list.
レンタルボックスのバージョン

* Deleting Items Also Deletes Them Inworld (v5.0 and above)
- hippoRENT offers you the ability to also have items delete themselves inworld when you delete them online (e.g. if you delete a box from your box list). Be careful using this feature ... items you now delete will be deleted inworld (not returned to your inventory, but deleted).
アイテムの削除
注意
アイテムは持ち主にリターンされることなく、削除されるでしょう。

* Show Prim Count Results Even When No Tenant
- By default, prim counts are only shown when there is a tenant. However, you can choose to show them at all times by ticking this option.
テナントが入っていないときのプリムカウント

* Show "Custom" Field in Box Configuration Page
* Show "Custom" Field in Box List Page
* Show "Custom" Field in Box List CSV Export
- See http://www.hippo-technologies.co.uk/resources/hipporent/v5detail/hr5_customfields.php for more about custom fields and how they work.


7. A NOTE ABOUT ACCOUNT SIZES
アカウントサイズに関する注意。

The web plugin module allows you, by default, to manage up to 100 rental boxes at any one time. If you are a larger business and wish to control more than this, there is an additional one-off charge of L$450 for each additional block of 100 (rezzed at any one time). We will shortly be installing a terminal in our main store where you can easily upgrade your account limit; in the meantime, drop Andy Enfield an IM in world to arrange this in person.
無料での管理はMAX100個です。
100個追加する毎にL$450を支払ってください。

========================================================================

If you encounter any problems with your that reading this document cannot solve, please see http://www.hippo-technologies.co.uk/support/ for a list of various ways to find out more or to get help.

We recommend to all customers that they join the Hippo Technologies Users Group in Second Life. It’s a friendly community and lots of advice, tips and support can often be found by asking nicely! Drop one of our customer support team an IM to request a group invite.

========================================================================

c 2009 Hippo Technologies
www.hippo-technologies.co.uk
??
Version 5.52 (Mono)
Last Revised: 18 March 2009
Online Version of Document: http://www.hippo-technologies.co.uk/resources/hipporent/web.php

================================================================
以下WEB翻訳です。ベースなので綺麗にしていきたいと思ってますが・・・。

================================================================

使用前に

************************************************************************************


1. ウェブサイトアカウントを作成します。

Hippo Technologiesウェブサイトパスワードが既にないなら(例えば、あなたは私たちの他のウェブで可能にされた製品の1つを使用しません)、HippoTech Website Registration Passをrezzingすることによって、始まってください。 それをクリックしてください、それは、私たちのウェブサイトに接続し、あなたのためにアカウントを作成し、パスワードをあなたに話すでしょう(したがって、OwnerSayを通して、あなただけがそれを聞きます)。 あなたは、後で何かより重要なもののためのこのパスワードを変えることができます、ウェブサイトユーザの領域のページの上部の近くの'My Account'リンクを通して。 セカンドライフパスワードを使用しないでください、そして、Hippo Technologiesウェブサイトに特有のパスワードを選んでください。

チップ: 新しいユーザであれば、アカウントを作成した後に、あなたは、荷を解くために製品カートンを再rezして、再びそれに触れるべきです(あなたはそれが与えるフォルダーを無視できます(音を消さないでください!))… これはウェブサイトのその部分をアンロックするために荷を解く間、hippoRENTユーザとしてあなたを登録するから。

パスワードがいったんあると、あなたは、後でウェブサイトを利用するために http://users.hippo-technologies.co.uk// にログインできます。 何もあなたが(2)か(3)を読むまで見るものが以下になくて、まだこれをしないでください。


2. レンタルの箱

2.1 使用前に

(a) あなたの最初のレンタルが詰め込んで、借り方許容、それのための待ちをそれに承諾するRezは構成をロードします。

(b) users.hippo-technologies.co.ukを通してウェブサイトを見てください、そして、(上記を注意見てください)ウェブサイトのhippoRENT部分の中で「レンタルの箱」リンク(hippoRENTタイトルの下の)をクリックします。 あなたは、あなたの新しい箱が残された、位置(slURLを位置まで開くためにこれをクリックする)、価格、(もしあれば)のテナント、および時間と共に記載されているのを見るでしょう。 また、あなたがそうするのを左から右まで許容する3つの「動作」アイコンがあります。

* 箱(スパナ/レンチアイコン)を構成します。

* 構成を再び積みます(2個の円形の矢のアイコンをクリックしてください)。

* それを削除します(赤い円の白い十字アイコンをクリックしてください)。

または、レンタルの箱が2時間毎にウェブサイトに投票することに注意してください、(いつ、「変化」は起こります、例えば、支払い) これは、覚えておくために重要です: ウェブサイトに表示する状態で残っている時間は、「ライブな」状態で計算されませんが、立ち遅れを避けると一時間の2間隔で、ウェブサイトに報告されます。 レンタルの箱は、… したがって、セカンドライフで、より広いことのそれであるときにウェブが次にどんな理由、箱が自分のやりたいことをやるとき幸福に運んで、アップデートするレンタルでもウェブサイトをブレークする間の接続が接触を作るなら働く(ちょうど従来と同様彼らはサーバを必要としなかった)ためにウェブサイトを必要としません。 レンタルのすべての「ミッションクリティカルな」タイミングが「不-世界的」に起こります。


2.2 ウェブでレンタルの箱を構成します。

スパナ/レンチアイコンをクリックしてください。そうすれば、あなたはレンタルの箱の構成ページを開くでしょう。 これは初めに少しの威圧ように見えます、多くのオプションで、しかし、基本的に、それがあなたが以前使用したことがある構成notecardのウェブバージョンです、それぞれのセットのオプションが一緒に分類されている状態で。 古いスタイル構成notecardsなら、初めに、大部分無視できます。 当分、価格をLに1週間あたり200ドル変えて、500へのPrim Allowanceを試みて、いろいろなことがどう働くかに関する感じを得てください。 脚部にスクロールしてください、そして、OKをクリックしてください(打たれて、テキスト値を入れた後に、入ってください)。

あなたは、今、円形の矢のアイコンがレンタルの箱の右に明るくされるのがわかるでしょう。 これは、箱の「不-世界」がウェブサイトのものを合わせるために構成ダウンロードを必要とするとあなたに言っています。 それで、アイコンをクリックしてください。そうすれば、箱の「不-世界」は、まもなく、構成を再び積むでしょう。

構成スクリーンのためのいくつかの役に立つヒントとチップについて言及するのは現在、価値があります…

* より簡単な管理のためにレンタルの箱を一緒に分類できます。 レンタルの箱のグループにおいて私たちのガイドを見てください: http://www.hippo-technologies.co.uk/resources/hipporent/box_groups.php

* 絵はキーによって格納されます。(あなたは、あなたの目録の絵/織地を右クリックして、これを得るために「コピー資産UUID」を選ぶことができます。 または、あなたは、箱の「不-世界」に絵の名を音声命令PICTUREを使用することによって、キーに変換させることができます: <箱の中に保持された絵の名前>例えば、PICTURE: 私の新築の家。 または、あなたがオンラインで持っているレンタルサーバがそれに絵を持っているなら、あなたはそれから使用する絵を選ぶことができます。

* また、サーバからNotecardsと目印を選ぶことができます、あなたがそのタイプの何らかの目録をレンタルサーバにアップロードしたなら(セクション2が上であることを見てください)。

* 使用料共有とIMsが働いている代替手段は(セカンドライフグループでない!)を分類します。 ? グループを定義するために、各ページに現れる左手ツールバーで「グループ」アイコンをクリックします。 新しいグループを創設してください、そして、画面上の指示に続くことによって、それに人々を加えます。 注意、共有するのに使用するのではなく、コミュニケーションにグループを使用しているだけであるなら、あなたはあなたが選ぶどんな値への各人にもShare%を設定できます。--- 使用料であるときにだけ、それは、共有しながら、使用されました。

* 何かオプション/分野が何をするかが不確かであるなら、マウス・ポインタの上方に浮かびます。役に立つtooltipを手に入れるそれ。 また、あなたはRental Boxガイドでそれを調べることができます、すべてのウェブ設定オプションが同等なConfiguration Cardオプションを反映するとき。

* あなたは非常に容易にレンタルの箱の構成を別のものを回避できます。 あなたが1個以上の箱をrezzedさせるなら、構成ページの下部にスクロールします。 あなたはあなたの他のレンタルの箱の」 …と選択リストから「というレンタルの箱のこのものをコピーしてください構成にオプションを見るでしょう。 ソースとクリックが「行く」とき、あなたが使用したい箱を選びます。


2.3 ウェブからレンタルの箱を命令して、制御します。

メインレンタルの箱のスクリーンに戻ると、あなたは見るでしょう、レンタルの箱のリストの下部で、多くのコントロール。 ボタンがまさにする「リフレッシュリスト」は視点をリフレッシュします。 あなたがちょうど新しいレンタルの箱の「不-世界」をrezzedしたところである例の役に立ちます。 右に動くために、「選択されていた状態で、構成してください」は*複数のレンタルがすぐに*を詰め込むのを構成できます。あなたが構成したい箱をチェックしてください(すべての間で切り換える右側欄と選択されなかったなにも先端でカチカチする音箱を使用してください)。 次に、「選択されていた状態で、構成してください」をクリックして、あらゆる変更を行ってください。そうすれば、それらはそれぞれの選択された箱に適用されるでしょう。 同様に、「選択されたアップデート」は、自分たちをアップデートするように選択されたレンタルの箱の「不-世界」に言います。

中央コントロールは、よりおもしろいです: あなたは、さまざまな機能があるというドロップダウンメニューをクリックするかどうかを見るでしょう。 それぞれが現在選択されたレンタルの箱か箱に適用されるので、機能を試みる前に、少なくとも1つを選択してください。 上から下まであなたがそうすることができるリストで:

* Tenancyを編集してください-> あなたはこれでテナントに改称できます、長さ。(日、いくつが「自由であるか」、そして、)(払戻し不能な)どんなパートナーも命名するものについて。

* 借用を…にコピーするか、または動かします。 -> いかなる他の賃借された箱から現在選択された箱(es)までの借用もコピーするか、または動かします。 詳しい情報に関して http://www.hippo-technologies.co.uk/resources/hipporent/v5detail/hr5_copying.php を見ます。

* Tenantを取り外してください-> テナントをブートしてください(静かかメッセージで)、またはそれらを還付します。

* Partnerを取り外してください-> レンタルの箱に記載されたパートナーを免職します。

* 蓄え-> 特定の人(そして言わば特定の長さの時に)のためにレンタルの箱か箱を予約します。

* 無遠慮->は予約をクリアします。

* ロックしてください-->はそれを支払われることができないようにレンタルの箱をロックします。

* アンロック->は、もう一度支払いを受け取ることができるように箱をアンロックします。

* End->の上の錠は、現在の借用がいったん終わるとそれ自体をロックするように箱に言います。

* 構成Option-> あなたはただ一つの設定オプションを箱か箱に送ることができます。 サーバから送ると、これは古いスタイル音声命令のように働いています。 そのように、例えば、HOVERTEXT COLOUR: 青。

* 要求Latest Status->が、最新の状態でウェブサイトを確認するとレンタルの箱を言う、(役に立つ、あなたが次の一時間の2アップデートを待つよりむしろまさしくその最新の借用タイミングが欲しい、)


3. レンタルサーバ

レンタルサーバは、notecards(例えば、テナント情報notecards)、織地/絵(業者を使用していると、あなたはレンタルの位置の良い絵を潜在的テナントに見せたくなる)、および目印を持つのに使用されます(あなたがそれらをインクワイアラーに配りたいなら)。 あなたがhippoVENDシステムを使用したなら、本当に、今従う指示は、非常に身近になるでしょう。 notecards、目印または織地を離れて積み込むのを計画していないなら、あなたは、3未満を分けるためにまっすぐスキップできます。

hippoRENTウェブServerをrezzingすることによって、始まってください。 すばやく構成notecardを積み込んでいる間、待ってください。

それを右クリックしてください、そして、「編集」を選んでください(次にMoreは>>> 体格ダイアログボックスであれば完全に広げられるというわけではありません)。

'「コンテンツ」タブを選びます、そして、'_コンフィグ'notecardでダブルクリックして、それを編集してください。

SERVER NAMEとPASSWORDを前者の場合重要で2番目の場合で例えば、何か安全なものに変えてください。
サーバー名: 利用されなくなった工業用地レンタルLtdサーバ、1
パスワード: fhfh476343h

そして、あなたが、決して実際にあなたのパスワードを覚える必要がなくて、それがコミュニケーションを保護するのに単に使用される、サーバ。

今度は、notecardを閉じてください、そして、(当分別の選択肢を無視できます)それを救ってください。 近くでは、セカンドライフは、窓を建設して、次に、サーバをクリックして、構成を再び積むために「リセット」を選びます。

あなたがCTRLキーを押さえて、それらをそれに引きずることによってサーバに使用したくなるいずれもnotecards、目印または織地を加えてください(小さいラウンドではなく、最大関心事で堅苦しいサーバに必ずドラッギングしてください)。

次に、あなたは、一度、して、サーバをクリックして、「オンラインで行ってください」を選んで、再びそれをクリックして、「負荷Inv」を選びます。 各個条の詳細はウェブサイトに酔っぱらうでしょう。ater、レンタルの箱の構成を編集するとき、あなたは、あなたがここでロードした目録を使用して、すぐにそれを選ぶことができます。

重要な注意: あなたはあなたがhippoRENTサーバから配りたい項目の上に完全な許容を持たなければなりません。 (あなたが次の*所有者*に設定する許容はあなたが願っている何かであるかもしれません).

あなたが現在あなたの名前とパスワードでウェブサイト( http://users.hippo-technologies.co.uk/ を訪問する)にログインするなら。 hippoRENTアイコン(大きいレンタルの箱)をクリックしてください、そして、「レンタルサーバ」(ページの先頭の大きいhippoRENTタイトルの下の)をクリックしてください。 気付くと、あなたは、今、「サーバと目録」ページにいるべきです。 各サーバはテーブルのページの先頭と目録の品目に下に記載されています。 ここで多くのことをするように願うべきであって、あなたはそうすることができます:
名前をクリックすることによって、ちょうど1つのサーバのコンテンツ(1以上がありましたら)を調べてください。

* その地図上の位置にslURLを開くためにサーバの位置をクリックします。

* 状態をクリックすることによって、オンラインかオフラインにサーバをターンします。

* 赤いXアイコンを名前の右とクリックすることによって、サーバを削除します。

* 次に円形の矢のアイコンをクリックするサーバの目録を再び積む、アイコンを削除します。

* その目録の品目の右と輪になっている矢のアイコンをクリックすることによって、目録の商品をだれかに届けてください、次に、受取人の名前(ちょうどセカンドライフに現れるように)に入って、'配送してください'をクリックして。


4. レンタルの業者

レンタルの業者は使用への簡単さ自体です。 いったん少なくとも1個の箱を持っている後、絵、rezで、業者を設立してください。

いったん業者をrezzedすると、あなたは、それが主なウェブサイトでhippoRENTバナーの下で「レンタルの業者」をクリックすることによって記載されているのを見ることができます。 各業者は名前、位置(slURLリンクとクリックする)、それが示す特性、状態(オフラインまたはオンラインで、状態をクリックして、それをオンラインまたはオフラインではじき出す)、およびあなたが今ごろ既に詳しいはずである動作アイコンのセットで記載されています。

スパナアイコン()をクリックすることによって、業者を構成してください。 あなたはhovertextがどのように(オンであるか、オフであるか、または賢いです(業者が使用されていて、次に、消え失せると、それは現れます))に見えるか、そして、業者がチャットにおける特性の詳細を話すかどうかオプションを見るでしょう。状態にこの業者に現れる、またはいくつかを使用することによってテキストをフィルターにかけても、これの下では、どの特性かをフィルターにかけることができます; あなたが後者を使用すると、業者は、だれの名前か位置があなたがここに入れるテキストを含むかを特性に示すだけでしょう。最終的に、‘ふるまいWhen Inactive'セクションはあなたにスライドショーモードをセットアップさせることができます(使用されないと、業者は所有地を通して自転車で行くでしょう)。

OKをクリックして(それはここに自動的にオンラインになるでしょう)、業者の構成の当時のクリックへ円形の矢のボタンを取っておいて、業者「不-世界」に構成をダウンロードしてください。


5. 支払いログ

ウェブサイトの4番目の部分は支払いログ(1ページの上部のhippoRENTタイトルの下で「支払いログ」をクリックする)です。 あなたは、各支払いがあなたのレンタルの箱の1つまで済むのを見るでしょう、日付、時間、レンタルの位置の名前、「不-世界」の位置、テナント名、および払込金額で、記載されています(それであれば、ネガは還付でした)。 どんなプロキシ支払い(テナントの代価を払う友人)にも、少しのPがあります。テナントの名前の横のアイコン--これの上でマウスを持って、受取人の名前があるtooltipを見てください。

あなたはこのページの多くの役に立つことができます:

* 種類の情報(コラム先端で矢を使用します)。

* まさしくあなたが欲しい情報をフィルターにかけます('フィルタ'ボタンをクリックしてください、そして、いくつかの評価基準に入ってください、そして、'OK'をクリックしてください)。

* 日付、レンタルの名前、テナント位置などで支払いを分類する右側のコラムの組分けツールを使用します。

* CSVへの輸出は、より精巧な分析のためのMicrosoft Excelのようなプログラムにどさっと落とされた状態であなたがこれらのものに関して知っているなら容易にそうであることができるデータのテキストのみバージョンを生産するでしょう。


6. 好みのページ

hippoRENTウェブサイトの中の最終的なページで、あなたはあなたのレンタル・システムがどう見て、反応するかに関するいくつかの局面を支配できます。 単に、あなたがつけたいあらゆるオプションのカチカチと音を立ててください、「非-カチカチと音を立て」るあなたが無効にしたいものとクリックがあなたの変化を救うために承認する。

* 筆地名を示しています。
- 箱は、それらが座っている筆地と言わばあなたの名前とサイズが、あなたの箱のリストにこれを表示するのを選ぶことができる(あなたが箱のリストをCSVに輸出するなら)と報告します。

* レンタルの箱のバージョンを示しています。
- これをつけてください。そうすれば、各箱は現在の箱の中の名前の下のソフトウェアバージョンが記載する表示をつけるでしょう。

* Items Also Deletes Them Inworld(v5.0と上)を削除します。
- hippoRENTはまた、あなたがオンラインでそれらを削除するとき(例えば、あなたがあなたの箱のリストから箱を削除するなら)、項目に「不-世界」を自分たちで削除させる能力をあなたに提供します。 この特徴を使用して、注意してください… あなたが現在削除する項目は削除された「不-世界」(あなたの目録に返されませんが、削除される)でしょう。

* テナントでさえないときに、堅苦しいカウント結果を示しています。
- デフォルトで、堅苦しいカウントはいつ、テナントがいるかが示されるだけです。 しかしながら、あなたは、このオプションのカチカチと音を立てることによってそれらをいつも見せるのを選ぶことができます。

* 「カスタム」の分野の受信トレイ構成ページを見せています。
* 「カスタム」の分野の受信トレイリストページを見せています。
* 分野受信トレイリストCSVが輸出するのを「習慣」に示しています。
- 詳しい情報については、カスタム分野とそれらがどう働くかに関して http://www.hippo-technologies.co.uk/resources/hipporent/v5detail/hr5_customfields.php を見ます。


7. アカウントサイズに関する注
ウェブプラグインモジュールは、いかなる時も最大100個のレンタルの箱を管理するためにデフォルトであなたを許容します。 より大きい企業であり、これより制御するのがお望みでしたら、Lの追加一回限りの料金がそれぞれの100追加ブロック(いかなる時も、rezzedした)のために450ドルあります。 私たちは、まもなく、あなたがアカウント限界を容易にアップグレードさせることができる私たちの主記憶装置の端末をインストールするでしょう。 差し当たり、アンディ・エンフィールドのために自分でこれをアレンジする世界でIMを落としてください。


========================================================================

よりまたは、助けを得るために見つける様々な方法のリストのための http://www.hippo-technologies.co.uk/support/ は、このドキュメントが解決できないその読書であると考えてください。

私たちは、彼らがHippo Technologies Users Groupをセカンドライフに接合することをすべての顧客に勧めます。 それは好意的な共同体です、そして、うまく尋ねることによって、多くのアドバイス、チップ、およびサポートはしばしば見つけることができます! サポートがグループが招待するよう要求するためにIMを組にする私たちの顧客のひとりを落としてください。

========================================================================

c2009カバTechnologies www.hippo-technologies.co.uk?
バージョン5.52(モノタイプ)
最後に改訂されています: 2009年3月18日
ドキュメントのオンラインバージョン: http://www.hippo-technologies.co.uk/resources/hipporent/web.php