Graal Forums  

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

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
  #16  
Old 10-29-2001, 09:46 AM
ArmadeusWarlock ArmadeusWarlock is offline
Registered User
Join Date: Jun 2001
Posts: 373
ArmadeusWarlock is on a distinguished road
...

You know, I thought Graal was a Zelda game, which means....

NO CARS,SKATEBOARDS,ETC!

Oh well. Anyways, look at all the playerworlds. Many of them copy ideas from Graal2001, so I dont think it'll matter if he steals your car idea. I mean, come on, its not like you can make a crappy 10-second script car just to say the idea is yours, anything that you make, is, if I believe, Graal's property as well, so it doesnt really matter if you steal ideas.

[edit] Im not saying your script was done in 10 seconds, im sure you may have taken a while to do it, but im basically saying that any script made is owned partially by graal, and also, such a simple idea cannot be copyrighted or anything on a game like so. [/edit]

Last edited by ArmadeusWarlock; 10-29-2001 at 09:57 AM..
Reply With Quote
  #17  
Old 10-30-2001, 02:52 AM
TDO2000 TDO2000 is offline
Registered User
TDO2000's Avatar
Join Date: Jul 2001
Location: Germany
Posts: 655
TDO2000 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;
}
}
}}
this code is really bad X_x
__________________
No Webhost at the moment
Reply With Quote
  #18  
Old 10-30-2001, 08:34 AM
Psyker Psyker is offline
Tired Sloth
Join Date: Mar 2001
Posts: 6,217
Psyker will become famous soon enough
Send a message via AIM to Psyker Send a message via Yahoo to Psyker
Dodge Viper !
__________________
Reply With Quote
  #19  
Old 10-30-2001, 08:49 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
Quote:
Originally posted by Aknts

How about you not copy my idea...
bout to say that spanky !

Last edited by nyghtGT; 10-30-2001 at 08:52 AM..
Reply With Quote
  #20  
Old 10-30-2001, 09: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
About them copying me?
__________________
Reply With Quote
  #21  
Old 10-30-2001, 10:30 AM
Cybnext_Design Cybnext_Design is offline
Registered User
Join Date: Jun 2001
Posts: 244
Cybnext_Design is on a distinguished road
Send a message via AIM to Cybnext_Design
How can you all say that people are copying your idea, when in fact, you didnt have the idea to make the first car. A lot of your ideas just come from real life. Im sick and tired of hearing, you stole my idea and things like that. Thats just childish.
__________________
Graal2001 NPC Maker
Frolic Owner
Aim: C Y B N E X T
Reply With Quote
  #22  
Old 10-30-2001, 10:17 PM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
Quote:
Originally posted by Poogle
So are the skateboards =\
the skateboards are dumb ... Krynn's cars are kool ... Skateboards stop being kool when everyone started asking "Can I have skatebord script ?"

Last edited by nyghtGT; 10-30-2001 at 10:19 PM..
Reply With Quote
  #23  
Old 10-30-2001, 10:19 PM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
Quote:
Originally posted by Aknts
About them copying me?
yeah ... i remember you telling me bout them months ago ....
Reply With Quote
  #24  
Old 11-06-2001, 11:22 AM
Jonnyb504 Jonnyb504 is offline
Registered User
Join Date: Oct 2001
Location: Louisiana
Posts: 9
Jonnyb504 is on a distinguished road
Send a message via AIM to Jonnyb504
GOD!

I was doing a car thing with my server called the globe.....thats based on The GLobe...lol....i have roads and everything! I just want to clear this up i made this up at school and got on and saw this post so if mine goes up dont start acusing....but mine are going to be alot for complex then urs seems....not to cme by as an offense! Ima make where if u have ur an owner but if ur job is a thef u can pick the car then sell it before u get caught but u cnat pick the car if it has a car locke or w/e....it can also hold some items.....ima try to get where it holds more that 2 people if its a big car....(it would be soemthying like the train on 2001) and more stuff to come....lol.....its very complicated just hopin it dont lag the f*** out the server......lol
__________________
Reply With Quote
  #25  
Old 11-06-2001, 08:30 PM
TDO2000 TDO2000 is offline
Registered User
TDO2000's Avatar
Join Date: Jul 2001
Location: Germany
Posts: 655
TDO2000 is on a distinguished road
Re: GOD!

Quote:
Originally posted by Jonnyb504
I was doing a car thing with my server called the globe.....thats based on The GLobe...lol....i have roads and everything! I just want to clear this up i made this up at school and got on and saw this post so if mine goes up dont start acusing....but mine are going to be alot for complex then urs seems....not to cme by as an offense! Ima make where if u have ur an owner but if ur job is a thef u can pick the car then sell it before u get caught but u cnat pick the car if it has a car locke or w/e....it can also hold some items.....ima try to get where it holds more that 2 people if its a big car....(it would be soemthying like the train on 2001) and more stuff to come....lol.....its very complicated just hopin it dont lag the f*** out the server......lol
The Train is extreme laggy. If there where 2 people in a car there could also be a problem with this lag so if u leave the level it's sometimes like these 'big jumps' when the train is somewhere else and u say leave and ohhh u are not where u wanted to leave (thinks that noone will undestand what i mean ;D)
__________________
No Webhost at the moment
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 07:50 PM.


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