What started you Modding?

Started by Cobra {sfx}, December 17, 2005, 05:48:46 PM

Previous topic - Next topic

Cobra {sfx}

Was just thinkin back to what got me into the modding scene as a lot of peeps ask.

   

   I used to run a clan {6th Airborne} (even had nice Para Skins made :) ) - i also remember long obj matches, cheats started appearing, same old boring routine etc (gets tedious doin same maps after 2 yrs), and i came across a Battle Server Mod and ran it on our server, - i think it was this mod that was responsible for getting me into modding once i seen what was possible, who the original maker was im not sure as it was passed to me by a guy who said he made it - i found out later that would have been impossible as he couldnt script, (obviously edited the script writers name).

   

   Anyway - whoever you were that made that Tank drive around Dest Village/the Bombing Stukas / etc - YOUR TO BLAME ;)
Sleep? What is that?

Card {sfx}

M8 I think your talking about bluebrooks......

   He got me too......

Cobra {sfx}

You could be right because i came across another mod similar that had that name in - wasnt sure if it was another script edit tho
Sleep? What is that?

GiffE1118

hehe that was the first mod i ever installed :D then i think i emailed him to ditch the dogs for me and he did.

   

   ithink we all remember the dark days where u just start playing and u decide to start a clan. u have 2 members, a free hosted webby, and now server. LOL im suprised my made it. the new server really does al the work now. made us go from 17 members to 35+

   

   yesterday i was looking through all my old files. and came acros my first atempt to mod using cobras sp-mp tutorial. Around march i did that. was just a bundle of errors. :p

   

   my story is:

   started around march of this year. i played on those maps, then i wanted to find them and ended up here some how, i never posted just read. and there was only around 14 pages of topics in the scripting section. i tried doing the tut that cobra had. sorta got it to work. tried tons of maps each only hardly worked. then started to try and find out how to do stuff. landed over at tmt which then taught me a hell of alot, i forgot about mru, and came back.  

   

   here was my first atempt:

   
//********************************************************************
   // Start of PreFab
   
   
   
   main:
   
   setcvar "g_obj_alliedtext1"     "Hunt For Tiger Kings" // Your Maps Name/Whatever
   setcvar "g_obj_alliedtext2"   ""
   setcvar "g_obj_alliedtext3"      "by"
   setcvar "g_obj_axistext1"     ""
   setcvar "g_obj_axistext2"   ""
   setcvar "g_obj_axistext3"   "=|95th|=GenDonut"
   
   setcvar "g_scoreboardpic" "m5l1a" // A Scoreboard Pic
   
   setcvar "g_gametype" "2" // your chosen gametype
   setcvar "fraglimit" "0"
   setcvar "timelimit" "20" // 10 mins map time outta do
   setcvar "level.clockside" "kills" //  Highest Team With Kills Wins
   
   
   level.script = maps/m6l2a.scr // your maps scripts name
   
   
   thread spawns // Gonna need this
   
   removeclass Actor // This Line Removes the AI Actors
   
   
   level waittill prespawn
   
   thread fix1
   
   thread port1
   
   thread port2
   
   thread port3
   
   level waittill spawn
   
   exec global/weather.scr
   
   fix:
   local.panzer = spawn models/vehicles/panzer_tank_europe.tik
   local.panzer.origin = ( 4529 4819 196 )
   local.panzer.angle = -88
   local.panzer solid
   local.panzer immune bullet
   local.panzer immune fast_bullet
   local.panzer immune bash
   local.panzer immune mg
   local.panzer immune explosion
   local.panzer nodamage
   end
   
   //--------------------------------> ( Cobras Teleporter A )
   
   //--------------------> (lower Middle Buildings Teleporter)
   port1:
   
   local.portlight = spawn script_model
   local.portlight model "emitters/welding_spark.tik"
   local.portlight.origin = ( 957 183 168 ) // starting point
   local.portlight.scale = .5
   
   local.trig = spawn trigger_use
   local.trig targetname port1
   local.trig.origin = ( 957 183 168 ) // starting point
   local.trig setsize ( -30 -30 0 ) ( 30 30 80 )
   $port1 waittill trigger
   local.player = parm.other
   local.player tele ( 1212 239 454) // destination
   local.portlight remove
   $port1 remove
   wait 7
   thread port1
   end
   
   //--------------------------------> ( Cobras Teleporter A )
   
   //--------------------> (lower Middle Buildings Teleporter)
   port2:
   
   local.portlight = spawn script_model
   local.portlight model "emitters/welding_spark.tik"
   local.portlight.origin = ( 4729 251 268 ) // starting point
   local.portlight.scale = .5
   
   local.trig = spawn trigger_use
   local.trig targetname port2
   local.trig.origin = ( 4729 251 268 ) // starting point
   local.trig setsize ( -30 -30 0 ) ( 30 30 80 )
   $port2 waittill trigger
   local.player = parm.other
   local.player tele ( 4879 170 484) // destination
   local.portlight remove
   $port2 remove
   wait 7
   thread port2
   end
   
   
   //--------------------------------> ( Cobras Teleporter A )
   
   //--------------------> (lower Middle Buildings Teleporter)
   port3:
   
   local.portlight = spawn script_model
   local.portlight model "emitters/welding_spark.tik"
   local.portlight.origin = ( 4027 -217 168 ) // starting point
   local.portlight.scale = .5
   
   local.trig = spawn trigger_use
   local.trig targetname port3
   local.trig.origin = ( 4027 -217 168 ) // starting point
   local.trig setsize ( -30 -30 0 ) ( 30 30 80 )
   $port3 waittill trigger
   local.player = parm.other
   local.player tele ( 4121 -392 369) // destination
   local.portlight remove
   $port3 remove
   wait 7
   thread port3
   end
   
   thread blah
   
   blah:
   
   while (1)
   {
   wait 17
   iprintln "Map Converted By =|95th|=GenDonut"
   wait 2
   iprintln "M512A"
   wait 2
   iprintln "Download at www.95thDivision.modcentral.us"
   wait 15
   iprintln "TELE's are spread throughout the map"
   wait 2
   iprintln "press use on tele's"
   wait 2
   iprintln ""
   wait 120
   }
   
   end
   end
   
   spawns:
   
   local.axis = spawn info_player_axis
   local.axis.angle = 9
   local.axis.origin = ( 1890 4671 29 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 4
   local.axis.origin = ( 3521 2702 171 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 8
   local.axis.origin = ( 5645 3695 212 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 9
   local.axis.origin = ( 1890 4671 29 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 4
   local.axis.origin = ( 3521 2702 171 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 8
   local.axis.origin = ( 5645 3695 212 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 9
   local.axis.origin = ( 1890 4671 29 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 4
   local.axis.origin = ( 3521 2702 171 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 8
   local.axis.origin = ( 5645 3695 212 )
   
   local.axis = spawn info_player_axis
   local.axis.angle = 9
   local.axis.origin = ( 1890 4671 29 )
   
   
   local.allies = spawn info_player_allied
   local.allies.angle = 64
   local.allies.origin = ( 1789 1875 276 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 110
   local.allies.origin = ( 3276 -3879 233 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 8
   local.allies.origin = ( 3624 999 272 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 64
   local.allies.origin = ( 1789 1875 276 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 110
   local.allies.origin = ( 3276 -3879 233 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 8
   local.allies.origin = ( 3624 999 272 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 64
   local.allies.origin = ( 1789 1875 276 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 110
   local.allies.origin = ( 3276 -3879 233 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 8
   local.allies.origin = ( 3624 999 272 )
   
   local.allies = spawn info_player_allied
   local.allies.angle = 64
   local.allies.origin = ( 1789 1875 276 )
   end
   
   // End of PreFab
   //*****************************************************************************

   

   hehe wat a terrible script...

Cobra {sfx}

I dont remember my first mod but i know the Jet-Pack mod was a very important one ... i was introduced to Viciouss, he said if you can make a Jet-pack mod ill make a website, i made the mod and he made the webby, my dept was creating {sfx} - ( The onsite Modding guys ), Vics was to run the webby, turned out rather well ;)
Sleep? What is that?

Elgan {sfx}

first mod was the tutorial on Bjarnes website for firing flak88. then i made a airstrike mod, then some spline planes, then some binox that spawned explosions, then some map and boat and thenflyable planes.

   

   was just looking at mods to put in me server, lookin at tmt, then talking to scorpio midget and he was doing things to me in his server, so then i was tlkin to bjarne who helped me learn to mod, explained it all to me, read his tutorial...didnt understand, came bk years later, tlking to bjarne again as he was on msn, did more tutorial and then i was testin mic on ts2 with mru ip on thi site and then they are like hello elgan, u sound pretty. They paid me 1000 million and i stuck arround,

Cobra {sfx}

Haha ok i wont tell anyone all that begging you did ;)

   

   I remember how u got in actually Elg, i set a test to see who could make some mines, you entered and kinda scraped in :P

   

   You were after my splineys i reckon :P
Sleep? What is that?

Elgan {sfx}

hm

   

   i seem to remember, i had already made em and u said, hey ur sfx:P and alienx got all mad:

Cobra {sfx}

Hmmm no thats not right i was usin em in obj_team4 and you and a m8 came in to play in em and asked about em, u joined sfx bout a week later

   

   2-pilot_eject.jpg[thumb=datas/thumbs/2-all_planes.jpg" alt="2-all_planes.jpg" />

   

   Now that brings back memories :) Good fun that
Sleep? What is that?

Elgan {sfx}


Card {sfx}

Are we fighting???????:D:D

   

   Ok notepad's at 20 paces.......

   

   Ready.....................Set.........................SCRIPT....

Elgan {sfx}

lmaoyou crack me up man..nah we dont fight, cobra is too big. he whent to bed anyway, he had some women around

Card {sfx}

Rob,

   Don't take that!!!!!!!!!!

   

   Especially from................HIM!!!!!!!!!!!!!!!!

   

   :D

   

   Edit:Come on Rob is the bruise that bad???????

Cobra {sfx}

Short memory youve got Elg! (its all in the archives btw)

   

   Which 1 Carl? I have a few from PaintBalling :)
Sleep? What is that?

Card {sfx}

The one Elg said He hit you!!!!....LOL!!!

   

   I have NEVER Tried Paintball...Is it fun??????

   Son is almost 10 is that old enough for it??????

   I would like to kick his arse at it.....since he kicks mine in MOHAA!!!!!

   

   LMAO Just read the EDITED one from Elg!!!!