Author Topic: Mods of Ottosparks (it's over one hundred for some raisin)  (Read 8379 times)


Also, for my old, cold, RPG mod project, I'm finally going to  work on it again.

Also, for my old, cold, RPG mod project, I'm finally going to  work on it again.
Cool you should show it yo me some time.

paintMod is almost in a testable state. PM me with details including your BL_ID and why you should beta test. (keep in mind if you have admin/superadmin on my server you're already on the list)

This is the first time I've done beta testing, but I've scripted up a simple mod to handle it all.

Quote
mp7964  - really awesome guy who is pretty cool

c:

Am I on the beta list, Otto? c:




I am a really awesome guy who is pretty cool.


What is that music thing though? ( the client_songs)

What is that music thing though? ( the client_songs)

It's a simple thing I wrote to basically chat a bunch of lines of chat.

Code: [Select]
function loadSong(%song, %wait)
{
%file = new fileObject();
%file.openForRead("config/client/Songs/"@%song@".txt");
while(!%file.isEOF())
{
%i++;
%waitTime = %i*%wait;
%line = %file.readLine();
schedule(%waitTime, 0, commandToServer, 'messageSent', %line);
}
%file.close();
%file.delete();
}

loadSong(filename, mswait);

Put songs in config/client/Songs/songname.txt.

mswait is the time in milliseconds before each line is said.

Quote from: ottosparks
The bulk of the beta testing happens on my server.


Beta Testers will get periodic releases for testing on other servers, however most of the testing will not be on other servers.

It's a simple thing I wrote to basically chat a bunch of lines of chat.
-snip-
haha, i remember when I made the same thing.

haha, i remember when I made the same thing.
everyone loves having their fair share of silly things they wrote in five minutes  :cookieMonster:

I want my fair share of things.

PaintMod Testing begins today.


At this point, it's in Alpha and I'm ironing out bugs on a public server. It's almost bug-free enough to enter Beta where I'll start adding in more features and making it pretty.
« Last Edit: October 03, 2011, 05:23:06 PM by otto-san »