Welcome to the Building Assassins Clan! Our tag is '|bA' at the end of our name. We are a editing and fighting clan so if you enjoy both you've found the right place to apply. We are only new but we will be up there with the best of the clans. If your interested in applying for and editing role or even a fighting role we have 2 seperate forums, please if you want to join as both, make an application in both sections. Currently we have 7 members: Knightmare, JigSaw, Death, Cowguy666, Nitros, Bucco, Buzza and KiTtY.


Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
General Discussion / POSSIBLY Leaving
« Last post by 58Edsel on July 28, 2012, 06:50:52 pm »
Hey all, I just app'ed for [mVa], and depending on their rules involving editing clans, if I get accepted, I may or may not have to leave.


As a reminder: I will be largely gone for the next 2 weeks, due to vacation and band camp.
22
General Discussion / CLAN MEETING READ THIS
« Last post by bucco on July 28, 2012, 01:20:19 pm »
Hey because I am leaving on wednesday I decided to host the server for all of today + tomorrow if possible and if you are on sauerbraten please come to the server, even if its just for a couple of minutes...


maybe it can be a clan meeting? xD
23
General Discussion / BuzzaImSorry!
« Last post by KiTtY on July 27, 2012, 09:27:54 pm »
Buzza im really sorry
 Please forgive me PLEASE
Buzza please
Im really sorry
 I dont know what I would do without u I cant lose another freind so please forgive me I beg of u I will get down on my knees
Please Buzza I miss being freinds I cant take his any longer
Please im really sorry  :'( :'( :'( :'( Please forgive me
Please I cant bare going thru this any longer
24
General Discussion / READ ME IMPORTANT
« Last post by bucco on July 27, 2012, 02:27:21 pm »
hey all

ive got the server + irc fully working and configured

the server now has name protection (for bA) - wear the tag and youll need to login using #auth thepassword (if you want to know the password ask me)

since ill be gone... someone else will need to hos for a month

thnx

bucco
25
General Discussion / Re: leaving
« Last post by Night_Hawk on July 26, 2012, 04:53:24 pm »
Now this time you have to fully leave bA to join |BoB| someone will invite you sooner or later.. just stay active on psl and someone will ask to duel you
26
Suggestions / Re: server
« Last post by bucco on July 25, 2012, 05:58:03 pm »
idk...

i think we should keep this topic active... one of the reasons i joined bA was 1) editing + fighting 2) seemd like a good clan, 3) i knew some people in there

the clan seemed good to me cause it had servers :P
27
Cubescript / Re: Portal Gun Script
« Last post by bucco on July 25, 2012, 05:20:56 pm »
this shouldnt be that big :P i just use lots of unnecessary code

for example this is all you need for that to work:

------


count = 0 // set the count of teleports used to 0
tcount = 0 // set the of teledests used to 0
timesdone = 0 // set the number of times this has been done to 0
portalon = 0 // turn off the portal gun
portalcolour = 0x5F90 // set the default portal colour to this
destcolour = 0xC0FF // set the default destination colour to this
mt = [  // teleport script
gridpower 0 // set to smallest gridsize for greatest accuracy
   if (= $count 0) [] [ // if this is your first time, dont do anything for now, otherwise, delete the previous particles and portals (teleport + teledest)
      delent // delete an ent: bug, not deleting anything :P
      entfind particles 4 309 10 * // select these particles
      delent // delete thim
      entfind teleport (- $count 1) -1 // select these teleports
      delent  // delete
      entfind teledest * (- $tcount 1) 1 // select these teledests
      delent // bye bye! :D
   ]
   newent teleport $count -1 // now make a new teleport
   newent particles 4 309 10 $portalcolour // and a partticles
   count = (+ $count 1) // and set the number of times the teleport has been used, to 1 more than before.
]

md = [ // teledest script
gridpower 0 // accuracy
newent teledest $tcount 1 // new teledest
newent particles 4 309 10 $destcolour // new particle
tcount = (+ $tcount 1) // set number of times used to 1 more than before
]
// event coding
onclientshoot = [ // the event for when someone shoots
   _cl_sht = $arg1 // the 1st argument
   if (!=s $_cl_sht "") [ // if its not blank
      oldfrag = (gettotalshots) // get the amount of possible damage done before
      sleep 5 [ // wait a little (5 ms)
         if (> (gettotalshots) $oldfrag) [ // if the new amount of totalshots is greater than the old one
            // you have shot :D
            _cl_sht // do the first argument
         ]
         onclientshoot $_cl_sht // repeat
      ]
   ]
] // end

onclientshoot [ // when someone shoots
   if (= $portalon 1) [ // if the portal is on
   if (mode 1) [ // if in coop
      edittoggle // toggle edit
      sleep 5 [ // sleep a little
         if (mod $timesdone 2) [ // if it is the 2nd, 4th, etc time (teledest)
            // second, 4th, etc...
            md // do the teledest
            timesdone = (+ $timesdone 1) // set the timesdone to 1 more
            sleep 5 [ edittoggle ] // wait a little, exit edit
         ] [ // otherwise, its the 1st, 3rd, etc time (teleport)
            // first, 3rd, etc...
            mt // do the teleport
            timesdone = (+ $timesdone 1) // set the timesdone to 1 more
            sleep 5 [ edittoggle ] // wait a little, exit edit
            
         ]
      ]

   ]

   ]
 
] // end


clearportals = [
      if (= $editing 1) [ // if editing
      entfind particles 4 309 10 * * // same thing, clear them
      delent
      entfind teleport (- $count 1) -1
      delent
      entfind teledest * (- $tcount 1) 1
      delent
      ] [ // otherwise, your not in editmode
      edittoggle //enter editmode
      entfind particles 4 309 10 * * //clear them
      delent
      entfind particles 4 309 10 * *
      delent
      entfind teleport (- $count 1) -1
      delent
      entfind teledest * (- $tcount 1) 1
      delent   
      edittoggle // exit editmode
      ]   
      
echo "All portals have been cleared." // tell the client that the portals have been cleared
]


---

now just remove those comments, my unnecessary code and you get like 3 functions that are 10 lines long :P
28
General Discussion / FOR THE RECORD
« Last post by 58Edsel on July 25, 2012, 05:12:32 pm »
Okay, posting this due to absolute frustration.  >:(
I have found fakes of my name.
I go by many names.
These are the ones I use:
58Edsel
58Edsel|bA
chimichaungah!
Gordon_Freeman
C0MB1N3
TheFisherman
molotovkawktail


There are others. But if you see these, its EDSEL.
Thanks.
29
General Discussion / Re: leaving
« Last post by 58Edsel on July 25, 2012, 04:33:01 pm »
oh nightmare....
30
General Discussion / Re: leaving
« Last post by Knightmare on July 25, 2012, 08:30:25 am »
Stop leaving people or ill hurt you =) LOL
Pages: 1 2 [3] 4 5 ... 10
You've found the forum of the one and only Building Assassins Clan!