Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Request Move dom flags & bomb sites with .gsc?
#1
Question 
I'm just wondering if its possible to change the positions of the flags in domination and the bomb sites in demolition/snd just by changing a .gsc? Big Grin
when yes, I'd like to know which file.

iAegle
Reply

#2
Sometimes when the amount of players is less, the place of the bombsite on demolition changes. So I guess it's possible.
Reply

#3
I don't think so, you'll probably have to create own waypoints with capture areas and bombtargets in a TDM game.
--
Reply

#4
(01-17-2011, 19:54)Eekhoorn Wrote: I don't think so, you'll probably have to create own waypoints with capture areas and bombtargets in a TDM game.

Hmm k, Since your not completely sure is it possible this is the bomb site position?
found in maps/mp/gametypes/_objpoints.gsc

Code:
createTeamObjpoint( name, origin, team, shader, alpha, scale )
{
    assert( team == "axis" || team == "allies" || team == "all" );
    
    objPoint = getObjPointByName( name );
    
    if ( isDefined( objPoint ) )
        deleteObjPoint( objPoint );
    
    if ( !isDefined( shader ) )
        shader = "objpoint_default";

    if ( !isDefined( scale ) )
        scale = 1.0;
        
    if ( team != "all" )
        objPoint = newTeamHudElem( team );
    else
        objPoint = newHudElem();
    
    objPoint.name = name;
    objPoint.x = origin[0];
    objPoint.y = origin[1];
    objPoint.z = origin[2];
    objPoint.team = team;
    objPoint.isFlashing = false;
    objPoint.isShown = true;
    objPoint.fadeWhenTargeted = true;
    objPoint.archived = false;
    
    objPoint setShader( shader, level.objPointSize, level.objPointSize );
    objPoint setWaypoint( true );
    
    if ( isDefined( alpha ) )
        objPoint.alpha = alpha;
    else
        objPoint.alpha = level.objpoint_alpha_default;
    objPoint.baseAlpha = objPoint.alpha;
        
    objPoint.index = level.objPointNames.size;
    level.objPoints[name] = objPoint;
    level.objPointNames[level.objPointNames.size] = name;
    
    return objPoint;
}
Reply

#5
yh but were are the coordinates? you will have to change those
and that is probably just the waypoint the little icon above it
I remember killingdyl made an unreleased mw2 mod heli wars with a custom bombtarget
--
Reply

#6
You are right about the waypoint mark thingy, its not the bomb itself
Reply

#7
(01-17-2011, 22:03)Eekhoorn Wrote: yh but were are the coordinates? you will have to change those
and that is probably just the waypoint the little icon above it
I remember killingdyl made an unreleased mw2 mod heli wars with a custom bombtarget

that is right Tongue lol
Reply

#8
(01-18-2011, 15:41)iAegle Wrote: You are right about the waypoint mark thingy, its not the bomb itself
remove precachemodel?

[Image: wyipjqo9qon7rc2v1lo.jpg]
Reply

#9
before u need to fix player respawn cuz are now so crazy . looking into player spawn can help you
Reply

#10
(01-19-2011, 08:38)Killingdyl Wrote:
(01-17-2011, 22:03)Eekhoorn Wrote: yh but were are the coordinates? you will have to change those
and that is probably just the waypoint the little icon above it
I remember killingdyl made an unreleased mw2 mod heli wars with a custom bombtarget

that is right Tongue lol

Do you have any ideas where to find them? or are they placed in Radiant (or whatever program the maps are made in) so i can't find them in any .gsc?
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Disable Planting on Bomb clemi555 4 3,042 11-04-2013, 07:59
Last Post: clemi555
  Help bunkers,tex, glusses and Flags teleport funny 4 3,030 01-28-2013, 21:57
Last Post: 99IRock
  Help timer/message for flags hillbilly 31 13,363 01-20-2013, 18:20
Last Post: [Z00MBY] Alex
  [Request] "Hacking" sites Tomsen1410 25 11,997 11-16-2012, 19:38
Last Post: narkos
  Help Teleporting via Flags/Origin/Location yokai134 2 2,785 09-06-2012, 12:19
Last Post: yokai134
  [Request] Bonus for planting the Bomb (s&d) islamsaab 8 3,904 09-01-2012, 12:09
Last Post: islamsaab
  Top 5 Porn Sites 4FunPlayin 6 10,172 09-12-2011, 18:33
Last Post: 4FunPlayin
  [Release] SD bomb as ammo box Pozzuh 2 2,546 08-30-2011, 22:36
Last Post: OrangePL
  [Request] SCREENSHOTS! -move if not right section- Arteq 2 1,864 08-30-2011, 17:57
Last Post: JariZ
  Main Menu Move Letters Down Scripts18 10 5,085 07-21-2011, 15:47
Last Post: Scripts18

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.