Author Topic: DeathAdders Scripts.  (Read 4510 times)

0 Members and 1 Guest are viewing this topic.

DeathAdder

  • Orc Thrasher
  • ***
  • Posts: 137
  • Reputation: +0/-0
    • http://www.los.planetubh.com
DeathAdders Scripts.
« on: July 24, 2004 01:02 pm CDT »
Hey, just finished a few touch ups on my new script SafeBash.cs! ^_^

If your tired of having to ask for a #fixbash flag Me from an admin, or reconnecting to fix the flag, Get This Script. What it does is when you are ready to bash it will auto switch to the best bashing weapon you have, and not let you switch to a non bash weapon. It will also let you switch between other bashing weapons only. I strongly recommend skimming the Redme file for more info.

http://http://www.geocities.com/deathadder_sr/SafeBash.zip

If that link doesn't work let me know.
« Last Edit: December 31, 1969 06:00 pm CST by DeathAdder »
<img src="http://www.pcrpg.org/pics/hosted/dadder.jpg">

Taurik

  • I'll have a Tribes 1
  • Elvin Legion
  • *
  • Posts: 683
  • Reputation: +0/-0
    • http://www.Linneberg.com
(No subject)
« Reply #1 on: July 24, 2004 01:42 pm CDT »
That's a pretty cool idea/script. :)

Between that and my script that doesn't let you transport if you have dust, I might be safe from my own stupidity.
« Last Edit: December 31, 1969 06:00 pm CST by Taurik »



Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #2 on: July 24, 2004 01:58 pm CDT »
Hehehe... pretty cool.  Lucky for me, I don't bash or transport.

Come to think of it... I haven't been on trpg in 6 months!
*shudders*

Maybe Lidge_Farkley will have to make an appearance?
hmm... Maybe I allready have but cannot remember?
:-)
« Last Edit: December 31, 1969 06:00 pm CST by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

Kendril

  • Minotaur Rager
  • ******
  • Posts: 759
  • Reputation: +0/-0
(No subject)
« Reply #3 on: July 24, 2004 04:13 pm CDT »
Lidge make sure your Character didnt get wiped when they had the Hack problem. A lot of Characters  got wiped due to inactivity!
« Last Edit: December 31, 1969 06:00 pm CST by Kendril »

"Mini-Me, would you like a Hot-Pocket? An Eggo?"

DeathAdder

  • Orc Thrasher
  • ***
  • Posts: 137
  • Reputation: +0/-0
    • http://www.los.planetubh.com
(No subject)
« Reply #4 on: July 24, 2004 04:36 pm CDT »
Mine wasn't wiped! w00t ^_^ so glad.
« Last Edit: December 31, 1969 06:00 pm CST by DeathAdder »
<img src="http://www.pcrpg.org/pics/hosted/dadder.jpg">

Scrizaks

  • Undead Hero
  • ****
  • Posts: 347
  • Reputation: +0/-0
(No subject)
« Reply #5 on: July 24, 2004 07:11 pm CDT »
The link doesnt work for me, but I just wanted to look at the coding... not to actually dl it. Good idea though.
« Last Edit: December 31, 1969 06:00 pm CST by Scrizaks »

WolfTones

  • Centurian Lord
  • ********
  • Posts: 2,501
  • Reputation: +0/-0
    • http://www.imafaggot!.com
(No subject)
« Reply #6 on: July 24, 2004 07:16 pm CDT »
Doesn't work for me either.
« Last Edit: December 31, 1969 06:00 pm CST by WolfTones »
Lookieme!  I am a no-talent ass clown!

DeathAdder

  • Orc Thrasher
  • ***
  • Posts: 137
  • Reputation: +0/-0
    • http://www.los.planetubh.com
(No subject)
« Reply #7 on: July 25, 2004 01:32 am CDT »
Know what... I need a new place to put files. anyone know of a site that just hosts storage like that. Somwhere to put pictures, and files to have links to??? Please I'm sick of Geocities NEVER FARGING WORKING >_<
« Last Edit: December 31, 1969 06:00 pm CST by DeathAdder »
<img src="http://www.pcrpg.org/pics/hosted/dadder.jpg">

DeathAdder

  • Orc Thrasher
  • ***
  • Posts: 137
  • Reputation: +0/-0
    • http://www.los.planetubh.com
(No subject)
« Reply #8 on: July 25, 2004 01:33 am CDT »
Heh, Scriz heres the easy way ^_^

Code: [Select]
function BashFlagProtect(%client, %msg)
{
for(%word=0; %word <= 5; %word++)
%Word[%word] = getWord(%msg, %word);



if(String::findSubStr(%msg, "You are ready to bash!") != -1)
{
ClearBludgeCycle();
$a = 1;
$b = 99;
$BashFlagActive = "true";
BludgeCheck();
}

if($BashFlagActive == "true")
{
if(String::findSubStr(%msg, "You bashed") != -1)
{
$BashFlagActive = "false";
}
else if(String::findSubStr(%msg, "You try to hit") != -1)
{
$BashFlagActive = "false";
}
}
if(String::findSubStr(%msg, "!list") != -1)
{
if((%word[0] == "[GLBL]") || (%word[0] == "[ZONE]") || (%word[0] == "You"))
{
if((%word[1] == $PCFG::Name) || (%word[1] == "say,"))
{
$a = 1;
BludgeCheck();
}
}
}
}

function nextWeapon()
{
if($BashFlagActive == "true")
{
$BCTotal = $BludgeCycleTotal - 1;
if($b >= $BCTotal)
{
$b = 1;
use($BludgeCycle[$b]);
}
else
{
$b++;
use($BludgeCycle[$b]);
}
}
else
{
remoteEval(2048,nextWeapon);
}
}

function prevWeapon()
{
if($BashFlagActive == "true")
{
if($b <= 1)
{
$b = $BludgeCycleTotal;
}
else
{
$b--;
use($BludgeCycle[$b]);
}
}
else
{
remoteEval(2048,prevWeapon);
}
}

function BludgeCheck()
{
for(%i = 1; $BludgeList[%i] != ""; %i++)
{
if(getItemCount($BludgeList[%i]))
%best = $BludgeList[%i];
BludgeCycleWeap(%best);
}
if(!BludgeSwitch(%best))
{
//moo
}
}

function BludgeSwitch(%weapon)
{
if(%weapon == "")
return false;

use(%weapon);
return true;
}

function BludgeCycleWeap(%best)
{
if(%best != "")
{
$c = $a - 1;
if($BludgeCycle[$c] == %best)
{
return;
}
else
{
$BludgeCycle[$a] = %best;
$a++;
}
}
$BludgeCycleTotal = $a;
}

function ClearBludgeCycle()
{
for(%i=1; %i<=10; %i++)
{
$BludgeCycle[%i] = "";
}
$BludgeCycle[0] = "SafeZone";
}

%i = 0;
$BludgeList[%i++] = "Club";
$BludgeList[%i++] = "Quarter Staff";
$BludgeList[%i++] = "Bone Club";
$BludgeList[%i++] = "Spiked Club";
$BludgeList[%i++] = "Mace";
$BludgeList[%i++] = "Hammer Pick";
$BludgeList[%i++] = "Spiked Bone Club";
$BludgeList[%i++] = "Long Staff";
$BludgeList[%i++] = "War Hammer";
$BludgeList[%i++] = "Justice Staff";
$BludgeList[%i++] = "War Maul";

$BashFlagActive = "false";

Event::Attach(eventClientMessage, BashFlagProtect);
« Last Edit: December 31, 1969 06:00 pm CST by DeathAdder »
<img src="http://www.pcrpg.org/pics/hosted/dadder.jpg">

JayJay

  • Elvin Legion
  • *****
  • Posts: 586
  • Reputation: +2/-1
(No subject)
« Reply #9 on: July 25, 2004 01:34 am CDT »
« Last Edit: December 31, 1969 06:00 pm CST by JayJay »

DeathAdder

  • Orc Thrasher
  • ***
  • Posts: 137
  • Reputation: +0/-0
    • http://www.los.planetubh.com
(No subject)
« Reply #10 on: July 25, 2004 01:36 am CDT »
That would be good for RPG pics... i want general stuff. like my Fish Tank pics and things.
« Last Edit: December 31, 1969 06:00 pm CST by DeathAdder »
<img src="http://www.pcrpg.org/pics/hosted/dadder.jpg">

Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #11 on: July 25, 2004 01:45 am CDT »
haahaha... now you can all finally see my picture of lightbringer running around a pole that we moved him to one day on the UB&G!

http://www.linneberg.com/rpgpics/lbrunning.gif

Also... after we moved his afk self to running around the pole, I think wolf's took him outside to the water and got him drowned... doh!
« Last Edit: December 31, 1969 06:00 pm CST by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

WolfTones

  • Centurian Lord
  • ********
  • Posts: 2,501
  • Reputation: +0/-0
    • http://www.imafaggot!.com
(No subject)
« Reply #12 on: July 25, 2004 06:34 am CDT »
OMFG I can't believe you captured that!!!! LightBringer was the 1st ever person i dueled with, I was so scared haha I was shaking in real life!  That's really cool, do you have any screenshots with me in it?
« Last Edit: December 31, 1969 06:00 pm CST by WolfTones »
Lookieme!  I am a no-talent ass clown!

Newbie

  • Spam Specialist
  • Centurian Lord
  • Posts: 2,531
  • Reputation: +1/-0
    • http://imchaos.com/newl.asp?x=M0ckious&y=900627
(No subject)
« Reply #13 on: July 25, 2004 08:16 am CDT »
Hahah, I remember those days.. I used to get all excited when I'd fight someone, and my hand would get a little shaky.
« Last Edit: December 31, 1969 06:00 pm CST by Newbie »

WolfTones

  • Centurian Lord
  • ********
  • Posts: 2,501
  • Reputation: +0/-0
    • http://www.imafaggot!.com
(No subject)
« Reply #14 on: July 25, 2004 08:38 am CDT »
omg my 1st time in uber zone my hole body was shaking so bad i was SOO SCARED. i never imagined a video game could do that to me.
« Last Edit: December 31, 1969 06:00 pm CST by WolfTones »
Lookieme!  I am a no-talent ass clown!