Jump to content

DarkEmperor13

Resident
  • Posts

    232
  • Joined

  • Last visited

Everything posted by DarkEmperor13

  1. So u cant even make a bumper that does it?
  2. Hey I recently bought an Ezio Auditore da Firenze outfit. So I was making some anmations and one thing I want to know is can u some how make an avatar go along with an animation by choosing the person or bumping them and how? I want to make it where you can pull off an assassination using the hidden blade like you can in the games.
  3. I have this awesome weapon called Yuffie's Shuriken from FFVII that returns to u when u throw it. I need a script that does a similar thing to use with some weapons i have. Is there any free ones?
  4. Hey im trying to make a soaking wet effect for maitreya. Anyone know how to make such a thing?
  5. Ok so I know how to make a basic gun script with bullet and what not. However, I do not know how to make a machine gun where it rapidly fires. How do I go about it?
  6. Hey I really need a job to earn money. I will be willing to work as a host and I have plenty of experience. Or if any one needs a male escort, I can do that too. Any info u need, just im me in-game. thanks!
  7. The problem I see is that they usually offer them to ppl with a mp store and I cant make one due to personal reasons. I've actually made a lot of things. Most are made of prims but I have a couple mesh houses I made myself. Ive already made clothes before but I don't sell them cause no one uses standard stuff anymore. I need something to make money off of cause I have rent to pay ingame and cant pay it when I have a bunch of crap in my ingame store that no one wants.
  8. hey guys I was told by a few people that I can get mesh models to keep and use to make clothes with blender as long as they don't have every body part like the feet or hands. So does anyone have any meshes that I can legally have to use such as Maitreya, Aesthetics, Omega(I think is what its called0 and etc, etc? Or if anyone know where I could get such things, then that works too.
  9. I was afraid of that... I could ask my folks but they wouldn't trust me with there credit card info even if my life depended on it. So this is gonna be interesting.
  10. Hi i'm looking for cheap land that only i own and isnt beside other people's land. I just need 200 prims for cheap price if anyone has anything. Plz let me know ingame
  11. dang. I really dont want to buy a catwa head cause there is a shape i want but the catwa head the shape is compatible with is 5k and no way i can make that much. I can barely make 1k
  12. so does it have to stay saved onto ur account? or do u just basically have to have bought something and then u can take it off ur account?
  13. Hey Guys, I own a Niramyth Aesthetics Mesh Body and I was wondering if there are any head shapes for it?
  14. exactly wat does it mean by having payment info on file?
  15. !st question: My sl sister said u can use XStreet SL Magic Box for mp store, but it's come to my attention that they were shutdown and rendered useless almost 3 years ago.Is this true? 2nd question: Speaking of mp store, are u required to have a payment option to even have a mp store? Ive been told by some friends that they never had to have one when they created theirs, so is there a chance that that was changed?
  16. Hey I know I have made a similar post, but I ddn't improvise in it, plus I'm also gonna add in some texturing as well. So I'm looking to be hired as a builder or texture artist. I will build things with mesh or if you need textures or some kind of art done, then I'll do it all for low prices. The following things are what I can do: BUILDING Houses/Clubs - L$1,000 Vehicles - L$500 Weapons - L$300 Furniture - L$150 Misc. - L$100 TEXTURES/ART Tattoos - L$200 Mesh Textures - L$100 Posters - L$50 So anyone who is interested, plz im me in-game.
  17. ok thanks guys Edited: Ok wait. i have in the notecard: Havana Hair Havana Hair(BOXED) 45 for the first line. For some reason it has the name of the item and price floating above the linkset, but for some reason it isn't showing the display texture and i have the texture in the prim with the above script. am i not doin somethin right?
  18. My point is i don't have money to upload images. But luckily soeone gave me what i needed.
  19. Ok so i found this vendor script on Outworldz.com and it was written by Jeff Heaton A.K.A. Encog Dod. It requires a notecard that you write info on the items you want to sell in it, but i'm a bit confused on how or should i say what i each line means. The code is: 17 // for loading notecard 18 string notecardName; 19 key notecardQuery; 20 integer notecardIndex; 21 list notecardList; 22 integer price; 23 string itemName; 24 25 displayItem() 26 { 27 string textureName = llList2String(notecardList,index*3); 28 itemName = llList2String(notecardList,(index*3)+1); 29 string p = llList2String(notecardList,(index*3)+2); 30 price = (integer)p; 31 string display = itemName + "\nL$" + p; 32 llMessageLinked(LINK_ALL_OTHERS , 0, ":"+display, NULL_KEY); 33 llSetLinkPrimitiveParams(5,[PRIM_TEXTURE, 1, textureName, <1,1,1>, <0,0,0>, 0 ]); 34 llSetPayPrice(PAY_HIDE, [price, PAY_HIDE, PAY_HIDE, PAY_HIDE]); 35 } 36 37 default 38 { 39 state_entry() 40 { 41 if( llGetListLength(notecardList)==0 ) 42 { 43 notecardName = "Config"; 44 state loading; 45 } 46 else 47 { 48 index = 0; 49 displayItem(); 50 } 51 } 52 53 link_message(integer sender_num, integer num, string str, key id) 54 { 55 if( str=="back" ) 56 { 57 index--; 58 } 59 60 if( str=="forward" ) 61 { 62 index++; 63 } 64 65 66 if(index>=(llGetListLength(notecardList)/3) ) 67 index = 0; 68 69 if(index<0 ) 70 { 71 index = (llGetListLength(notecardList)/3); 72 index--; 73 } 74 75 displayItem(); 76 } 77 78 money(key id, integer amount) 79 { 80 if( amount>=price ) 81 { 82 llGiveInventory(id,itemName); 83 llSay(0,"Thanks for your purchase!"); 84 } 85 } 86 87 } 88 89 state loading 90 { 91 state_entry() 92 { 93 llSay(0,"Loading product data..."); 94 notecardIndex = 0; 95 notecardQuery = llGetNotecardLine(notecardName,notecardIndex++); 96 } 97 98 dataserver(key query_id, string data) 99 { 100 if( notecardQuery == query_id) 101 { 102 // this is a line of our notecard 103 if(data == EOF) 104 { 105 llSay(0,"Products loaded..."); 106 state default; 107 108 } else 109 { 110 notecardList += [data]; 111 notecardQuery = llGetNotecardLine(notecardName,notecardIndex++); 112 } 113 } 114 } 115 } and the notecard data that he gave as an example was: 1 buyredcar 2 Encog's Red Car 3 25 4 buyyellowcar 5 Super Car 6 30 7 buyboat 8 Encog's Boat 9 35 Anyone can tell me what is what?
  20. Hey does any one have an arrow texture i can use? I'm tryin to make a multi-item vendor and i need an arrow texture of some kind for the back and next buttons.
×
×
  • Create New...