Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   How about a car? (https://forums.graalonline.com/forums/showthread.php?t=15660)

Poogle 10-29-2001 01:38 AM

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!

Poogle 10-29-2001 02:04 AM

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!

StraightHustler 10-29-2001 02:30 AM

I want a Mustang!

Poogle 10-29-2001 02:48 AM

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!

Poogle 10-29-2001 03:00 AM

(Nick:) You will need GFXs, Ganis, Status Bars, setcar commands and flags

Aknts 10-29-2001 03:28 AM

http://www.angelfire.com/rpg/krynn1/car.png
How about you not copy my idea...

Poogle 10-29-2001 06:01 AM

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!

Poogle 10-29-2001 06:21 AM

Quote:

Originally posted by Aknts
http://www.angelfire.com/rpg/krynn1/car.png
How about you not copy my idea...

(Nick:)Aknts he may have not know see hes not P2Ped yet (btw nice screen shot)

Poogle 10-29-2001 06:37 AM

// 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;
}
}
}}

Poogle 10-29-2001 07:05 AM

Make it work!
 
(chris: )
Can anyone make this script work it should but it doesn't !
PLZ HELP! *BEGS* PLZ!!

Aknts 10-29-2001 07:15 AM

Err still copying :\ :(

Poogle 10-29-2001 07:51 AM

Quote:

Originally posted by Aknts
Err still copying :\ :(
So are the skateboards =\

Poogle 10-29-2001 07:54 AM

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

Aknts 10-29-2001 08:06 AM

Quote:

Originally posted by Poogle
So are the skateboards =\

I didn't make skateboards.

Poogle 10-29-2001 09:33 AM

Quote:

Originally posted by Aknts



I didn't make skateboards.

I know

ArmadeusWarlock 10-29-2001 09:46 AM

...
 
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]

TDO2000 10-30-2001 02:52 AM

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

Psyker 10-30-2001 08:34 AM

Dodge Viper !

nyghtGT 10-30-2001 08:49 AM

Quote:

Originally posted by Aknts

How about you not copy my idea...

bout to say that spanky ! :D

Aknts 10-30-2001 09:28 AM

About them copying me?

Cybnext_Design 10-30-2001 10:30 AM

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.

nyghtGT 10-30-2001 10:17 PM

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 ?"

nyghtGT 10-30-2001 10:19 PM

Quote:

Originally posted by Aknts
About them copying me?
yeah ... i remember you telling me bout them months ago ....

Jonnyb504 11-06-2001 11:22 AM

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

TDO2000 11-06-2001 08:30 PM

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)


All times are GMT +2. The time now is 04:34 PM.

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