01-03-2009, 01:29 AM
Anyone know of any? I'm not talking about Sadscript, something a bit faster. Hell, if someone can tell me how to make one myself, that'd be great. xD
Good scripting languages..
|
01-03-2009, 01:29 AM
Anyone know of any? I'm not talking about Sadscript, something a bit faster. Hell, if someone can tell me how to make one myself, that'd be great. xD
19-04-2009, 09:12 PM
Why do you want a scripting language other than sadscript oO? There's c++ but I doubt you can add this to a vb-project..
19-04-2009, 10:37 PM
lua
20-04-2009, 10:21 PM
Kouga20 Wrote:Why do you want a scripting language other than sadscript oO? There's c++ but I doubt you can add this to a vb-project..C++ is not a scripting languege. Nean, when you say sadscript I assume you mean the skin on ms scripting control that elysium ripped out of an example from pscode. Ms script control is scripting for vb. I don't know of any others easily accessible. It is really not that slow for scripting. What are you planning to do with it?
21-04-2009, 12:43 AM
lua is awesome.
Look heavily into beanshell if you are thinking Java, its the nicest 'scripting' language I've seen bolted directly into Java. Import beanshell.* and BAM a highly flexible scripting language at your fingertips. Of course, XML is rapidly becoming (if not already) the external file standard to follow and lua is basically a different implementation of that (or so I understand). To be honest, I've always seen visual basic as a heavyweight adaptation of a scripting language, all the principles are there o.0... have you considered using classes? That might be more what you want..
21-04-2009, 02:02 AM
Fox Wrote:lua is awesome. Classes? Could you elaborate... This is new to me, so I have no idea where to start.
21-04-2009, 02:12 AM
Nean Wrote:Fox Wrote:lua is awesome. Classes are a fucking mess in VB6. Quote:Robin:
21-04-2009, 02:14 AM
Classes are amazing.
21-04-2009, 02:20 AM
GIAKEN Wrote:Classes are amazing. Robin Wrote:Classes are a fucking mess in VB6. Quote:Robin:
21-04-2009, 02:21 AM
Robin Wrote:Classes are a fucking mess in VB6. GIAKEN Wrote:Classes are amazing.
21-04-2009, 02:25 AM
Someone fucking explain them.
21-04-2009, 02:42 AM
Resuming... it's a Type with not only variables inside, but also functions, called methods.
![]()
21-04-2009, 02:51 AM
Yeah...they're fun. Example:
> clsPlayer: Code: Private Player As PlayerRec < Then to use that just do this: > Wherever: Code: Public CPlayer As clsPlayer
21-04-2009, 02:59 AM
Odd.... Thanks for the explanation, I'll have to read up on these.
21-04-2009, 03:05 AM
You can even write your own DirectX 7 class and instead of having all of those public declarations for surfaces and shit you can do it all through the class or even a Winsock class and so on. It's very useful. I haven't tested it speed-wise, but it's probably going to be faster.
|
« Next Oldest | Next Newest »
|