Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 4 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to make floor break when u go to a certain area
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#71
RE: how to make floor break when u go to a certain area

lol... you can do it, not must..
It's just when you change the title we can see like, OHH this guy need help again with something else..
07-05-2014, 11:32 AM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#72
RE: how to make floor break when u go to a certain area

whenever some1 comments on something then this should be on the top of the list again so ppl would no when any1 comments so i might not. dunno

(This post was last modified: 07-05-2014, 08:13 PM by victorkim890(KimmyChimmy).)
07-05-2014, 07:56 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#73
RE: how to make floor break when u go to a certain area

if u post ur cs on moddb, can u change the title again like my custom story (work in progress) and then change it to my custom story (release)?

07-06-2014, 04:41 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#74
RE: how to make floor break when u go to a certain area

Yes. You can even change the link to it, but it will break other people's hyperlinks if they linked it.

(This post was last modified: 07-06-2014, 04:50 PM by Mudbill.)
07-06-2014, 04:50 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#75
RE: how to make floor break when u go to a certain area

can u make alexander move instead of staying in 1 spot like the flying naked guy can do

07-06-2014, 05:37 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#76
RE: how to make floor break when u go to a certain area

how do u make the player fly backwards when u go close to a door and the door explodes. i tried to do tat but it didnt work.

07-07-2014, 02:23 AM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#77
RE: how to make floor break when u go to a certain area

Use AddPlayerBodyForce. If you set the last value to true, and the first value to -5000 for example, perhaps this gives you the wanted result. I haven't tested it, but I assume negative X axis means backwards when co-ords are local.

07-07-2014, 03:18 AM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#78
RE: how to make floor break when u go to a certain area

tried to do tat but it still didnt work. script?

07-07-2014, 05:39 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#79
RE: how to make floor break when u go to a certain area

PHP Code: (Select All)
void OnStart()
{
    
AddEntityCollideCallback("Player""Area""FunctionName"true1);
}

void FunctionName(string &in asParentstring &in asChildint alState)
{
    
AddPlayerBodyForce(-5000.0f0.0f0.0ftrue);


Something along those lines. As I said, I haven't tested it. If local doesn't work (the last boolean), try setting it to false then use the co-ordinate direction you want the player to be pushed in. Increase the number if it is too weak.

07-07-2014, 10:47 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#80
RE: how to make floor break when u go to a certain area

maybe bug only for my laptop. im just going to download tat cs tat has tat scare i remeber wat the cs name was

07-08-2014, 05:16 AM
Find




Users browsing this thread: 1 Guest(s)