Author Topic: V-Scripts v.1  (Read 6840 times)

It works fine for me, are you sure you have 1.1?


it says jets on off but it don't do anything to them

Lets continue this on msn instead of flooding my topic.

Vh's jet thing only disables the users jets.

I made him a BIA server only V-Script mod that works for him, nvm our conversation above.

You can't change Jet force?

If you can I have no idea what the command would be because all of the original scripts are DSO'd.

VH your server's dead.

Code: [Select]
package textcolors {
function serverCmdMessageSent(%client, %text)
{
 if(%client.sufcol || %client.sufcol > 0)
 {
  if(%client.sufcol == 1)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c0" @ %text);
  }
  if(%client.sufcol == 2)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c1" @ %text);
  }
  if(%client.sufcol == 3)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c2" @ %text);
  }
  if(%client.sufcol == 4)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c3" @ %text);
  }
  if(%client.sufcol == 5)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c4" @ %text);
  }
  if(%client.sufcol == 6)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c5" @ %text);
  }
  if(%client.sufcol == 7)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c6" @ %text);
  }
  if(%client.sufcol == 8)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c7" @ %text);
  }
  if(%client.sufcol == 9)
  {
   messageAll("","\c7" @ %client.clanPrefix @ "\c3" @ %client.name @ "\c7" @ %client.clanSuffix @ "\c6: \c8" @ %text);
  }
 }
 else
 {
  Parent::serverCmdMessageSent(%client, %text);
 }
}
function serverCmdnormal(%client)
{
%client.sufcol = 0;
}

function serverCmdred(%client)
{
%client.sufcol = 1;
}

function serverCmdblue(%client)
{
%client.sufcol = 2;
}

function serverCmdgreen(%client)
{
%client.sufcol = 3;
}

function serverCmdyellow(%client)
{
%client.sufcol = 4;
}

function serverCmdteal(%client)
{
%client.sufcol = 5;
}

function serverCmdpurple(%client)
{
%client.sufcol = 6;
}

function serverCmdwhite(%client)
{
%client.sufcol = 7;
}

function serverCmdgrey(%client)
{
%client.sufcol = 8;
}

function serverCmdgray(%client)
{
%client.sufcol = 8;
}

function serverCmdblack(%client)
{
%client.sufcol = 9;
}
};
ActivatePackage(textcolors);


THAT. is what i meant. if you use plox give me some credit.

Wow thats cool man, that is gonna be in 1.2, you will get credit with the download aswell as in game credit. Thanks!

np. I made it a few days ago to test on my server, and all the sudden im a master of messagesent.

After much work and hard thinking for ideas, here comes 1.2, it's new commands include:

/crowd - Makes the standard player unable to jump or jet, useful for servers with themes where there are mini game players and spectators.

/seizure and /noseizure - As you can tell, the first one turns it on and the second off, it causes the player to fall to the ground and shake violently until it is turned off, the theme has been switched from climax to make it less offensive to younger players.

/adminpass - When entered it forces the player to say "I AM A handicap", it is rather amusing and it isn't abuse since the player can choose whether or not to use the command, the vulgar parts have been taken out to be less offensive to younger players, also took out the "ban me" part cause it was rather stretching the joke.

!status <text> - Gives the player a [status - <text you entered>] at the end of their name above their head, some issues follow including it going away on random occasions that I cannot track and it also dissapears upon death due to my laziness of not overriding the ondeath. (I know Fooly had one but we both talked and agreed neither was stealing the idea)

/servstats (admin only) - Displays the important server info to the person who entered it, I am not handicapped and made it admin only as it also displays admin passwords.

/racestats (admin only) - Displays the current stats of the racing player type to the admin who entered the command. (speeds, jet ability and jump force)

I also added back the me function and discovered using ! instead of / allows you to include spaces (I.E: /me greets everyone with a smile would come out "*VerticalHorizon greets" wheras using !me greets everyone with a smile would come out "*VerticalHorizon greets everyone with a smile).

I also deleted some things you may have seen on my server if you were there when I was beta testing 1.2, those were mostly tests, random fun things and some things that didn't make the final cut.

Enjoy.

Download V-Scripts 1.2

Note: Just making sure I don't get any complainers, once again, using !me and !status allow you to use spaces, using /'s (/me, /status) would only display the first word you entered.

Woot, new version! Have my cookies.  :cookie:

!me and !status weren't working for me. I think, I fixed it.

With that file you can now use /me and /status correctly, I hope you include it with new version of your script.  :iceCream: