Jump to content

yuka124

Resident
  • Posts

    9
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. im not sure its possible and safe anyone please tell me and what should i do safely b4 sell to someone.
  2. he said, he's a developer from Saudi Arabia, he created Linknulife. he seems to want me to create the account on linkinulife. but i'm very cautios, cause he's from saudi arabia.. middle east..... im scared of it lol. ..... anyone play linkinulife? how's it? he said he's planing to make a gambling sim in linkinulife. yeah, I'll be cautions and keep look him what to do. thanks for answering Freya and Amethyst:)
  3. Everybody have a "Hover Text clock" in the library in the inventory. but its a Pacific time, i wanna set it to Japanese time. I'm not a techy. anyone know?... pls help me // HoverText Clock Script // By Ben Linden // // Drop on an object to make it display the PST time. // // If you are interested in scripting, check out // the Script Help under the help menu. // The double slash means these lines are comments // and ignored by the computer. // Global Variables // a string is a collection of characters. string smin; // Represents minutes string sseconds; //Represens seconds // All scripts have a default state, this will be // the first code executed. default { // state_entry() is an event handler, it executes // whenever a state is entered. state_entry() { // llSetTimerEvent() is a function that sets // up a timer event in seconds. llSetTimerEvent(2.0); // call a timer event // every 2 seconds. } // timer() is an event handler, it executes on an // interval defined by llSetTimerEvent() timer() { // llFloor is a function that rounds down all numbers. // llGetWallClock is a function that returns the time // of day in seconds, on a 24 hour clock. integer seconds = llFloor(llGetWallclock()); // Convert the total number of seconds into a integer (whole number) integer min = llFloor(seconds/60); // Figure out how many minutes that is seconds = seconds - (min*60); //Work out the remaining number of seconds integer hour = llFloor(min/60); // figure out how many hours it represents. min = min - (hour*60); // figure out the number of minutes remaining // if is a conditional statement, it will only execute if the conditions are met. if(hour > 12) {hour = hour - 12;} // if the hours are greater than 12, convert to 12 hour time string shour = (string)hour; //convert the number into a string if(min < 10) {smin = "0"+(string)min;} // if less than 10 minutes, put a 0 in the minute string else { smin = (string)min;} if(seconds < 10) { sseconds = "0"+(string)seconds;} // if less than 10 sec, put a 0 in the second string else {sseconds = (string)seconds;} string time = shour + ":" + smin + ":" + sseconds; // build the seperate strings into a complete string, with colons // llSetText is a function that displays a string over the object. llSetText(time, ZERO_VECTOR, 1.0); //Display the string in solid black. } } Hi!!!! i did it. but it show wrong time... like a "5:33:474".. but anyway thanks for answering Kidd:) i still seeking for solution. pleaease:))) ""THank YOU VERY MUCH !! Innula:) IT WORKS XD""
  4. I created new group. but they don't show on my avi's head.... there show just "owner" I wanna show "group title" Of course i ticked show my name "always" and grout title in preference Anyone help plese
  5. sometimes very annoying me.. like when I'm in the club.... if anyone know please teach me:)
  6. I got a alternative fonts here http://www.sluniverse.com/php/vb/viewer-xml-skinning/53249-alternative-fonts-viewer-2-a.html what should I do? after I doownload them. and I using Firestorm viewer, is there any problem? please help me
  7. i know i need to convert it to BVH file. I've a bvhacker. but really dont know how to use it cause I'm not tech savy. I'm really weak about this field. please teach me simply:) I found excellent alternative:)) thanks MartinRJ and Monti:))
  8. I've heard 3D Analyze is a software to emulate various 3D graphics such as shader 2.0 technology. I tried it but it didn't work. I'm not sure what it's wrong. if phoenix doesn't work with it. what kind of viewer capable? Of course i read this blog http://crystalunicorn.wordpress.com/list-of-games-that-work-with-3d-analyze/. there was not second life on the list. but my Japenese bloger said SL used to be work with it. if anyone tried and did succeed with it. please help me
  9. I using gimp 2.6.11.and I installed layer effects and saved to scripts folder, but I can't open it. I searched it and googled it, even members of gimp help didn't know lol.........anyway.. I just wanna know what program can open scm file.. thanks:)
×
×
  • Create New...