Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
3 registered members (AndrewAMD, Grant, Neb), 908 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
Has someone finished a ladder code yet? #4776
06/22/01 02:09
06/22/01 02:09

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



What I still need in my game is a good ladder code, I've seen some topics about it, but none of them had a good ladder code.
So I wondered if someone had made a good ladder code yet and want to give it to me and other people who need it.

Re: Has someone finished a ladder code yet? #4777
06/22/01 05:39
06/22/01 05:39
Joined: Mar 2001
Posts: 1,825
London, England
Keith B [Ambit] Offline
Expert
Keith B [Ambit]  Offline
Expert

Joined: Mar 2001
Posts: 1,825
London, England
Haven't made one yet, but I had the idea that you could use the trace() function to scan the texture, so if there is a block close in front of you with a texture name beginning "ladder" then you will move up and down instead of forwards and backwards... It's how they do it in Deus Ex, among others. Sorry, that's not an awful lot of help as it will be a while before I try to get it working...
-Keith

Re: Has someone finished a ladder code yet? #4778
06/23/01 00:42
06/23/01 00:42

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



Thats how I am planning to do my ladders. Also I am going to do that to make climb-able wall moss.

-Jeff


Re: Has someone finished a ladder code yet? #4779
06/23/01 03:17
06/23/01 03:17

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



Ambit:

Sounds like a good idea!

Nemo


Re: Has someone finished a ladder code yet? #4780
06/25/01 06:01
06/25/01 06:01

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



We'll have some ladder code in AUM3 (in about a week).

Re: Has someone finished a ladder code yet? #4781
06/26/01 03:51
06/26/01 03:51

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



I'm really looking forward for AUM3, thanks George.

Re: Has someone finished a ladder code yet? #4782
06/26/01 05:51
06/26/01 05:51

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



The code works for ropes, too - in fact, I've tested it with a rope

Re: Has someone finished a ladder code yet? #4783
06/26/01 07:51
06/26/01 07:51

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



WOW again!

Re: Has someone finished a ladder code yet? #4784
06/26/01 08:02
06/26/01 08:02

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



george thats cool thanks for your hard work,Mbee looks like were gonna get another
nugget!! a golden wdl snippet YAAAAAH.

Re: Has someone finished a ladder code yet? #4785
07/31/01 02:11
07/31/01 02:11

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



Thanks for the ladder code George, but I can't get it working. This is what I have done:

- put your code into mine including this:

code:

var gravity_temp;
var rope_speed_up = 1;
var rope_speed_down = 1;

- put a map entity into my level and gave it action rope
- made skill1 100

Now I get a dangerous event warning and after that a wdl crash.
So I changed the following:

code:

if (key_w == 1 && my.z + (my.max_z - my.min_z) / 2 > player.z - (player.max_z - player.min_z) / 2)
{
wait(1); //added this...
move (player, rope_speed_up, nullvector);
}

if (key_s == 1) // go down
{
wait(1); //...and this
move (player, rope_speed_down, nullvector);
}

Also changed the keys to w and s just like in my game is used.

Now I get a too much actions _rope_event error.
How can I make it work? Please help me!!!


Page 1 of 2 1 2

Moderated by  HeelX, Spirit 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1