Jump to content

Trebbort Subagja

Resident
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Trebbort Subagja

  1. I currently have a tipping system in Second Life that successfully records and displays tips based on size, tracks total tips received, showcases the names and amounts of the last tippers, and includes a notification system for Second Life group chats. Now, I am looking to extend its capabilities by connecting it to an external website. This enhancement would allow users to register, customize scripts, and access tip data if they opt in, with the integration involving a database. Additionally, I am interested in exploring the implementation of a notification system that can send messages to external platforms like WhatsApp and Discord, expressing gratitude for tips and providing relevant details. I am looking for someone to discuss taking on this project 🙂
  2. I currently have a tipping system in Second Life that successfully records and displays tips based on size, tracks total tips received, showcases the names and amounts of the last tippers, and includes a notification system for Second Life group chats. Now, I am looking to extend its capabilities by connecting it to an external website. This enhancement would allow users to register, customize scripts, and access tip data if they wish, with the integration involving a database. Additionally, I am interested in exploring the implementation of a notification system that can send messages to external platforms like WhatsApp and Discord, expressing gratitude for tips and providing relevant details. What would my next steps be to realize this next step?
  3. I'm looking for a script that plays couple animations without rezzing poseballs. Now i know that the alignment will not be anywhere near as good as with poseballs. This is not a problem for me I've started fiddling around and found a basic play animation and trigger sound script which i've put in a box and attached as hud:matte-motes-asleep-2: string gAnimName1 = "express_laugh_emote"; string gAnimName = "express_laugh"; // what animation to play? default { state_entry() { llSay(0, "LOL"); } touch_start(integer total_number) { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); // ask the owner for permission to trigger animations llStartAnimation(gAnimName1); llStartAnimation(gAnimName); // automatically trigger animation. llTriggerSound( llGetInventoryName(INVENTORY_SOUND,0),1); } on_rez(integer param) { llResetScript(); // reset the script as soon as it starts. } attach(key id) { integer perm = llGetPermissions(); if (id != NULL_KEY) // make sure we're actually attached. { if (! (perm & PERMISSION_TRIGGER_ANIMATION)) // remember to use bitwise operators! { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); // request permissions from the owner. } } else { if (perm & PERMISSION_TRIGGER_ANIMATION) { } } } } Anyone can help out, perhaps know of someone to contact / hire? any help will be appreciated and will receive a version of my finished hud ;) It will be a helpful hud against unwanted harrassing ;).
×
×
  • Create New...