.:`=-~rANdOm~`-=:.

Tech Lounge => General => Topic started by: zippo on November 27, 2009, 07:39:50 PM

Title: Lua
Post by: zippo on November 27, 2009, 07:39:50 PM
So i just found this combine sound menu, for roleplaying. but it only works on TnB, if annyone knows how to recode this, so you can use it in cider... Il give them admin and donator for free, on my server...

link: http://www.garrysmod.org/downloads/?a=view&id=82466 (http://www.garrysmod.org/downloads/?a=view&id=82466)


// Zippo
Title: Re: Lua
Post by: Philliam on November 27, 2009, 07:53:33 PM
What makes it only work in TnB?
Title: Re: Lua
Post by: Ruben on November 29, 2009, 08:22:55 PM
Well its rly simple :/

The code you give here its only client o:

that script just make the player Run a console command that send integer info to the server.

gets the player who call the command and play like.

With this u can get that sounds working but you need to make your own Sound table. ;)

Server side:

Code: [Select]
--Just Small Example
local sndIndex = { "SoundPath1", "SoundPath2", "SoundPath3" }

function PlayShizOnPlayer(p,c,a)

if a[1] then
if a[1] > 0 && a[1] <= 3 then
p:EmitSound(sndIndex[tonumber(a[1])], 70, 100)
else
p:PrintMessage( HUD_PRINTTALK, "You Have Written an Incorrect Sound Please try another" )
end
else
p:PrintMessage( HUD_PRINTTALK, "You Didnt Give Arguments Sorry, Try Again" )
end
end

concommand.Add("rp_playline", PlayShizOnPlayer)

-- Sound Path means the Path of the local sound You want to play, this Table will have 3 index values 1,2,3

btw i dunno wut u mean with TnB? o.o
Title: Re: Lua
Post by: Banana Hat on November 29, 2009, 08:40:10 PM
taco and banana script.
it's a private rp script held by tnb servers.
Title: Re: Lua
Post by: Ruben on November 29, 2009, 08:52:14 PM
Well i can say i have no words for that derma panel code xD.

Haf funz =D
Title: Re: Lua
Post by: zippo on December 03, 2009, 08:40:22 AM
you sure its client only? line in the "Taco'n'banana" servers, i can hear the combine use voice commands like "Move along" etc.
Title: Re: Lua
Post by: Ruben on January 09, 2010, 09:03:28 AM
Yes... Lua need clientside to server side interaction, well depends how you use lua, at least this gaiz made a derma so they need to send client commands through it.

You will be able to recreate that with Mah Server Side Lua shiz.

if you try to use without any server script, this going to send u go eat shiz so :/.
Title: Re: Lua
Post by: Frank on January 09, 2010, 11:32:05 AM
OMg... Ruben is ALIVE!
Title: Re: Lua
Post by: Ruben on January 09, 2010, 12:24:40 PM
LoLWut o,o :C ya i R
Title: Re: Lua
Post by: » Magic « on January 10, 2010, 04:59:24 AM
noda  he r dead
Title: Re: Lua
Post by: ¦FlapJack¦ on January 11, 2010, 10:47:44 AM
Ruben, why are you making a table every time the command gets used? Its just adding more to what needs to be collected when its out of scope.


I reckon I've got OCD with tabbing too. Your tabbing makes me want to fix it...
Title: Re: Lua
Post by: Ruben on January 11, 2010, 07:26:11 PM
lol my mistake, just need to take out the table out the function. I'm agree with that.

Anyway do w/e you want, every people work in their own way so... idk.

if you don't like it I'm sooooooooooooo sorry :). Luck with OCD xD.
Title: Re: Lua
Post by: xxMingebaggerxx on February 10, 2010, 11:46:28 AM
I kan c u luben.. xD
Title: Re: Lua
Post by: =-Mastgrr-= on March 23, 2010, 10:59:15 AM
Look at my fail lua !!

Code: [Select]
function Fail(F)

if a[1] then Fail
if a[1] > 0 && a[1] <= 3 then
p:EmitSound(Fail, 70, 100)
else
p:FailMessage( HUD_PRINTTALK, "You Have Written an Incorrect Sound Please try another" )
end
else fail
p:PrintMessage( HUD_PRINTTALK, "Fail" )
end
end
fail
concommand.Add("rp_playfail", Fail)