Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-29-2001, 01:38 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Unhappy How about a car?

(CHRIS:)
I cannnot, for all i am worth(*aint much*), figure out a working car script that has a fuel tank I did all kinds of things but I am still not the world's best scripter(*never will be!*)but i am moderatley good i learn by example so show me one so i can ge this darn thing down!!!!!!!! Thanks to anyone who help me!
Reply With Quote
  #2  
Old 10-29-2001, 02:04 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
BTW:

BTW: some of the cars will be for sale others for rent so i need to mark who owns them and some will be convertibles (*the kind that dont convert*) so i need to be able to show the player a bit too!
Reply With Quote
  #3  
Old 10-29-2001, 02:30 AM
StraightHustler StraightHustler is offline
Registered User
Join Date: Oct 2001
Location: Graal Classic
Posts: 304
StraightHustler is on a distinguished road
I want a Mustang!
Reply With Quote
  #4  
Old 10-29-2001, 02:48 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Skins

i need to be able to easily change the skins of the cars so i can give ppl HORSECARS* and SNAKES* and other models easily



*The names are just names think about it and you can figure out the model i call them different things because of this dumb symbol------>© <-----------I hate it!
Reply With Quote
  #5  
Old 10-29-2001, 03:00 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
(Nick You will need GFXs, Ganis, Status Bars, setcar commands and flags
Reply With Quote
  #6  
Old 10-29-2001, 03:28 AM
Aknts Aknts is offline
Level Designer
Aknts's Avatar
Join Date: Apr 2001
Location: USofA
Posts: 3,340
Aknts will become famous soon enough
Send a message via AIM to Aknts

How about you not copy my idea...
__________________
Reply With Quote
  #7  
Old 10-29-2001, 06:01 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Hey i aint a copier

Thats offline i never ehard yuo say anything i came up with this this idea last night i wish i had saved that pm but we needed things for our PW i siad street cars my freind thought i meant regular cars and that is where i got the idea! i did not try to steal urs and if i wanna make one then WELL Shove a rod up urs!
Reply With Quote
  #8  
Old 10-29-2001, 06:21 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Quote:
Originally posted by Aknts

How about you not copy my idea...
(NickAknts he may have not know see hes not P2Ped yet (btw nice screen shot)
Reply With Quote
  #9  
Old 10-29-2001, 06:37 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
// NPC made by ~|¤Colit¤|~
if (playerenters) {
this.fuel=100;
this.x = x;
this.y = y;
}
if (playertouchsme) {
}
if (strequals(#c,Buy Car)){
set incar;
playerx = this.x;
playery = this.y;
hideplayer 1;
}
if (strequals(#c,Get out)){
unset incar;
}
while (playerhearts>=0) {
if (incar) {
if (keydown(0)) {
if (!onwall(x+0.5,y-0.5)) {
y-=0.5;
}
}
if (keydown(1)) {
if (!onwall(x-0.5,y+0.5)) {
x-=0.5;
}
}
if (keydown(2)) {
if (!onwall(x+0.5,y+2)) {
y+=0.5;
}
}
if (keydown(3)) {
if (!onwall(x+2,y+0.5)) {
x+=0.5;
}
}
}}
Reply With Quote
  #10  
Old 10-29-2001, 07:05 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Make it work!

(chris: )
Can anyone make this script work it should but it doesn't !
PLZ HELP! *BEGS* PLZ!!
Reply With Quote
  #11  
Old 10-29-2001, 07:15 AM
Aknts Aknts is offline
Level Designer
Aknts's Avatar
Join Date: Apr 2001
Location: USofA
Posts: 3,340
Aknts will become famous soon enough
Send a message via AIM to Aknts
Err still copying
__________________
Reply With Quote
  #12  
Old 10-29-2001, 07:51 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Quote:
Originally posted by Aknts
Err still copying
So are the skateboards =\
Reply With Quote
  #13  
Old 10-29-2001, 07:54 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Quote:
Originally posted by Poogle
// NPC made by ~|¤Colit¤|~
if (playerenters) {
this.fuel=100;
this.x = x;
this.y = y;
}
if (playertouchsme) {
}
if (strequals(#c,Buy Car)){
set incar;
playerx = this.x;
playery = this.y;
hideplayer 1;
}
if (strequals(#c,Get out)){
unset incar;
}
while (playerhearts>=0) {
if (incar) {
if (keydown(0)) {
if (!onwall(x+0.5,y-0.5)) {
y-=0.5;
}
}
if (keydown(1)) {
if (!onwall(x-0.5,y+0.5)) {
x-=0.5;
}
}
if (keydown(2)) {
if (!onwall(x+0.5,y+2)) {
y+=0.5;
}
}
if (keydown(3)) {
if (!onwall(x+2,y+0.5)) {
x+=0.5;
}
}
}}
Needs ganis
Reply With Quote
  #14  
Old 10-29-2001, 08:06 AM
Aknts Aknts is offline
Level Designer
Aknts's Avatar
Join Date: Apr 2001
Location: USofA
Posts: 3,340
Aknts will become famous soon enough
Send a message via AIM to Aknts
Quote:
Originally posted by Poogle
So are the skateboards =\

I didn't make skateboards.
__________________
Reply With Quote
  #15  
Old 10-29-2001, 09:33 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Quote:
Originally posted by Aknts



I didn't make skateboards.
I know
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 03:46 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.