I was fooling around with Simple Native Trainer and I spawned a window cleaning lift just for sh*ts and gigs. I thought about how cool it would be to set up your own custom window cleaning lifts around the city. To do that, you obviously couldn't load the objects using the trainer - the objects would have to be part of the map. No big deal, because I have no problem converting objects to WPL. I am not, however, accustomed to scripting ... at all. And I realize that in order for a window cleaning platform to work, it would have to be scripted. So my question to all you scripters out there: could you make this work? I'll provide the WPL and an updated gta.dat (unless you're familiar with making pathways and you don't need the gta.dat) and your job would be to get the damn thing scripted. Of course there may be more steps involved than making a WPL and scripting, and if so let me know!
//dont allow this to occur unless u r standing on lift and unless lift exists if (e.Key == Keys.Up) { for (int i = (int)lift.Position.Z; i < zTarget; i = (int)lift.Position.Z) { lift.Velocity += new Vector3(0, 0, 1); Wait(0); } } //im actually gonna finish making this as long as it isnt buggy i will post here
well looks like i made a ninja jump too, lol
almost!
well i attached and froze niko and he stays on, now to figure out object collisions, anyone?
Shift+O opens menu, page up and page down to select stuff in menu, left and right arrows to adjust the numbers on your selection, and enter when selecting attach/detach
if you want to move lift around while standing on it u need to attach yourself first, walk near center of lift to attach or use
press O to spawn/delete lift Now just press T to activate lift when standing on it
xD
converted lift mod to an ai heli
This post has been edited by lamar_mustapha on Friday, Mar 23 2012, 00:03
These are all well and good, but not what I'm looking for. I need a script that would turn a lift that I've placed on the map into an actual working lift. I want it to work just like all the other lifts in the city. You get on the lift, a message box appears telling you to press a button to activate the lift, you press the button and you can control the lift. There has to be a script somewhere in the game folders that scripts for all the the window cleaning lifts around the city. I assume that the scripts are all based on the coordinates of each particular lift and that all you would need to do is spawn a lift using simple native trainer, save the lift as an actual WPL (which I have done) and plug the coordinates into the script. Of course the script would also need the height at which the lift stops (so that it knows when to let you off). If you can figure out how to make a custom lift into a lift the game recognizes as real, that'd be exactly what I'm looking for.
This post has been edited by throat poka on Wednesday, Mar 21 2012, 21:26