Did you know? Every one of these messages is hand-typed live, just for you.

Custom content being used by contestants

The archive for the 8th Anniversary Speedmapping Contest entries and discussion.

Moderators: Semfry, ividyon

User avatar Buff Skeleton
>:E >:E
Posts: 4173
Joined: 15 Dec 2007, 00:46

Subject:

Post Posted: 20 Jul 2009, 18:39

qtit's ladder code, available here:

http://www.unrealsp.org/forums/viewtopic.php?t=1053

Code itself:

qtit wrote:I used for my ladders a touch function.

Code: Select all

=============================================================================
//
// QLadder.
//
=============================================================================
class QLadder expands Triggers;

function Touch( actor Other ) //actor touches the ladder, calls this function
{
   if( Pawn(Other) != None && Pawn(Other).bIsPlayer ) //if actor is a player do...
   {
      Other.SetPhysics(PHYS_Flying); //...do this
   }
}

function tick(float DeltaTime) //tick tock.
{
   local PlayerPawn pp; //define player class as pp

   foreach TouchingActors(class'PlayerPawn',pp) //for all touching actors, if they are pp
   {
      if(pp.ViewRotation.Pitch < 57344 && pp.ViewRotation.Pitch > 40960) //at some point of view rotation do...
      {
         pp.Velocity.Z = -140; //...do this.
      }
      if(pp.ViewRotation.Pitch < 24576 && pp.ViewRotation.Pitch > 8192) //same as above.
      {
         pp.Velocity.Z = 140;
      }
   }
}

function UnTouch( actor Other ) //when actor untouches...
{
   if( Pawn(Other) != None && Pawn(Other).bIsPlayer ) //...and is a player...
   {
      Other.SetPhysics(PHYS_Falling); //... go down make boom!
   }
}



It uses the view rotation to determine if player climbes or not.

User avatar Hellscrag
Founder Founder
Posts: 4007
Joined: 11 Nov 2007, 19:14
Location: In a random access memory of dreams

Subject:

Post Posted: 20 Jul 2009, 18:39

zacman wrote:Uh, I'd also like to use my weapons from UT Tactics (Available for Dload in the general gameplay section) I also wanna use my ZacmanDecos pack (Dload in Content Creation)


If you could re-post your downloads here then it's probably OK. Don't make us go hunting for the links, though.

Waffnuffly wrote:You can't use stuff you created earlier that wasn't meant for the contest, though. Sorry.


It's allowed if it's shared with everyone. But your map shouldn't rely on it for its wow factor. This contest is meant to be about mapping, not your abilities to create other custom content.
Image
Life is what you make of it.

User avatar Buff Skeleton
>:E >:E
Posts: 4173
Joined: 15 Dec 2007, 00:46

Subject:

Post Posted: 20 Jul 2009, 18:42

Oh right, I'm thinking of map geometry, which you aren't supposed to rip from other stuff you created beforehand.

User avatar Hellscrag
Founder Founder
Posts: 4007
Joined: 11 Nov 2007, 19:14
Location: In a random access memory of dreams

Subject:

Post Posted: 20 Jul 2009, 18:43

Waffnuffly wrote:Oh right, I'm thinking of map geometry, which you aren't supposed to rip from other stuff you created beforehand.


Oh, yeah. Barring "limited use of prefabs", which the rules make provision for - e.g. I've borrowed some lantern brushes from DOM-TempoClasm.
Image

Life is what you make of it.

UB_
Nali Priest Nali Priest
Posts: 7960
Joined: 11 Nov 2007, 21:00

Subject:

Post Posted: 20 Jul 2009, 19:14

Hellscrag wrote:If you could re-post your downloads here then it's probably OK. Don't make us go hunting for the links, though.


I've already added the links.
ImageImage

User avatar zacman
Skaarj Warlord Skaarj Warlord
Posts: 690
Joined: 23 Jun 2009, 02:51
Location: Under your bed with a Chainsaw

Subject:

Post Posted: 23 Jul 2009, 10:03

Hellscrag wrote:
zacman wrote:Uh, I'd also like to use my weapons from UT Tactics (Available for Dload in the general gameplay section) I also wanna use my ZacmanDecos pack (Dload in Content Creation)


If you could re-post your downloads here then it's probably OK. Don't make us go hunting for the links, though.

Waffnuffly wrote:You can't use stuff you created earlier that wasn't meant for the contest, though. Sorry.


It's allowed if it's shared with everyone. But your map shouldn't rely on it for its wow factor. This contest is meant to be about mapping, not your abilities to create other custom content.

I'm only really using the Zacmandecos.Celinglight...
It's really simple, just a triangle with a cut off top that glows...
ImageImage

Code: Select all

(11:32:26) Shivaxi: i love fat girls

Code: Select all

(03:01:24 PM) <+All_Rights_Reserved> i'm not masturbating

User avatar zacman
Skaarj Warlord Skaarj Warlord
Posts: 690
Joined: 23 Jun 2009, 02:51
Location: Under your bed with a Chainsaw

Subject:

Post Posted: 23 Jul 2009, 10:04

Waffnuffly wrote:You can't use stuff you created earlier that wasn't meant for the contest, though. Sorry.

These weapons are relatively new... I created them 3 weeks ago, so the contest was already on :lol:
ImageImage

Code: Select all

(11:32:26) Shivaxi: i love fat girls

Code: Select all

(03:01:24 PM) <+All_Rights_Reserved> i'm not masturbating

User avatar Hellscrag
Founder Founder
Posts: 4007
Joined: 11 Nov 2007, 19:14
Location: In a random access memory of dreams

Subject:

Post Posted: 25 Jul 2009, 19:42

My map is now using the inventory killer trigger created by UArchitect for EXU2, with Waffnuffly's permission.

There's no compiled download for this, so if you intend to use it, you will need to compile it yourself - and, if you do, it might be able to give it your own distinctive classname to avoid conflict with other packages. For instance, mine is called a "VVVRemoveInventory".


Code: Select all

class RemoveInventory expands Triggers;

var() bool bInstigatorOnly,bTriggerOnceOnly;
var bool btriggered;

event Trigger( Actor Other, Pawn EventInstigator )
{
local pawn p;

   if((btriggered&&btriggeronceonly) || eventinstigator==none) return;
   if(btriggeronceonly&&btriggered) btriggered=true;

   if(bInstigatorOnly)
      removeinventoryfor(eventinstigator);
   else
      foreach allactors(class'pawn',p)
         if(!p.isa('spectator')&&p.inventory!=none&&p.health>0&&!p.bhidden)
            removeinventoryfor(p);
}

simulated function removeinventoryfor(pawn p)
{
   local inventory i;
   for(i=p.inventory;i!=none;i=i.inventory)
      if(!i.isa('scorekeeper'))
      i.destroy();
   p.selecteditem=none;
   p.weapon=none;
   p.pendingweapon=none;
}

defaultproperties
{
}
Image

Life is what you make of it.

User avatar ividyon
Administrator Administrator
Posts: 2352
Joined: 12 Nov 2007, 14:43
Location: Germany
Contact:

Subject:

Post Posted: 02 Aug 2009, 22:52

Can I use a couple of pawns that .:..: made for me? There's no way for my entry to win anyway, so I don't think it should be that much of a problem..
UnrealSP.org webmaster & administrator

User avatar Hellscrag
Founder Founder
Posts: 4007
Joined: 11 Nov 2007, 19:14
Location: In a random access memory of dreams

Subject:

Post Posted: 02 Aug 2009, 23:03

sana wrote:Can I use a couple of pawns that .:..: made for me? There's no way for my entry to win anyway, so I don't think it should be that much of a problem..


I guess the six hour entries are kinda anomalous anyway... so go ahead.
Image

Life is what you make of it.

Previous

Who is online

Users browsing this forum: No registered users and 78 guests

Copyright © 2001-2024 UnrealSP.org

Powered by phpBB® Forum Software © phpBB Limited