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 08-02-2001, 08:46 AM
prozac424242 prozac424242 is offline
Registered User
prozac424242's Avatar
Join Date: May 2001
Location: Gone crazy: back soon
Posts: 356
prozac424242 is on a distinguished road
Send a message via ICQ to prozac424242 Send a message via AIM to prozac424242
array help ...

I want to make a shooting wepaon that
instead of
if (playerdir==0){y--;}
if (playerdir==2){y++;}
it is jsut one command thing.
here is what i got so far
except it goes diagonal.
How far off am i?
NPC Code:

// NPC made by Prozac
if (playerenters) {show;}
if (playertouchsme) {toweapons throw thing;}
if (weaponfired)
{
this.distance=10; //how far to throw
setarray this.newx,4;
this.newx[0]=playerx; this.newx[1]=playerx-1;
this.newx[2]=playerx; this.newx[3]=playerx2;
setarray this.newy,4;
this.newy[0]=playery-2; this.newy[1]=playery+1;
this.newy[2]=playery+4; this.newy[3]=playery+1;

setplayerprop #c,#v(this.newx[playerdir]);

for (this.i=0; this.i<this.distance; this.i++)
{
putexplosion 0,this.newx[playerdir]+this.i,this.newy[playerdir]+this.i;
sleep .1;
}

}

__________________

Useful links:
Graal Stats
Client Script Functions-GS1 to GS2
Serverside Script Functions-Gscript page
Particle Engine-Player Attributes
Server Options-Admin rights-Gmaps
Quote:
Originally Posted by Admins
Thanks for developing and improving playerworlds and such
Reply With Quote
  #2  
Old 08-02-2001, 09:05 AM
LiquidIce00 LiquidIce00 is offline
RadioActive Monkeeh
LiquidIce00's Avatar
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
LiquidIce00 is on a distinguished road
Send a message via ICQ to LiquidIce00 Send a message via AIM to LiquidIce00 Send a message via Yahoo to LiquidIce00
do you mean

NPC Code:

// NPC made by Prozac if (playerenters) {show;}
if (playertouchsme) {toweapons throw thing;}
if (weaponfired) {
this.distance=10; //how far to throw
this.dir=playerdir;
this.x=playerx+vecx(this.dir)*2;
this.y=playery+.5+vecy(this.dir)*2;
for (this.i=0; this.i<this.distance; this.i++) {
this.x+=vecx(this.dir);
this.y+=vecy(this.dir);
putexplosion 0,this.x,this.y;
sleep .1;
}
}


__________________
LiquidIce *Owner* (UnholyNation)
-UN Website
http://www.unholynation.com
-UN Forum
http://forums.unholynation.com
-
-the thinker
-

-
onwall2 for nonp2p (i suck at onwall)
Reply With Quote
  #3  
Old 08-02-2001, 09:07 AM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
OH ok
__________________
Xerphier Dintch
Featuring
Reply With Quote
  #4  
Old 08-02-2001, 09:10 AM
LiquidIce00 LiquidIce00 is offline
RadioActive Monkeeh
LiquidIce00's Avatar
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
LiquidIce00 is on a distinguished road
Send a message via ICQ to LiquidIce00 Send a message via AIM to LiquidIce00 Send a message via Yahoo to LiquidIce00
Quote:
Originally posted by Knightoffrost
OH ok
lol knight is so mannered
__________________
LiquidIce *Owner* (UnholyNation)
-UN Website
http://www.unholynation.com
-UN Forum
http://forums.unholynation.com
-
-the thinker
-

-
onwall2 for nonp2p (i suck at onwall)
Reply With Quote
  #5  
Old 08-02-2001, 09:12 AM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
Quote:
Originally posted by LiquidIce00


lol knight is so mannered
>.< Its Xerphier... stupid Knightoffrost.. errr..gerrrr.. that name should die! I dont know why i picked it gah! Xerphier ! YOU HEAR ME ITS XERPHIER! Actually i have a xerphier account its just not p2p.
__________________
Xerphier Dintch
Featuring
Reply With Quote
  #6  
Old 08-02-2001, 09:16 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
huh?
Reply With Quote
  #7  
Old 08-02-2001, 09:17 AM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
Quote:
Originally posted by Poogle
huh?
Account name
__________________
Xerphier Dintch
Featuring
Reply With Quote
  #8  
Old 08-02-2001, 09:31 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 Knightoffrost


Account name
Wha?
Reply With Quote
  #9  
Old 08-02-2001, 09:51 AM
prozac424242 prozac424242 is offline
Registered User
prozac424242's Avatar
Join Date: May 2001
Location: Gone crazy: back soon
Posts: 356
prozac424242 is on a distinguished road
Send a message via ICQ to prozac424242 Send a message via AIM to prozac424242
thanks!

Thanks Ice - i been scripting since before vecx and vecy
then i looked them up in my Graal scripting search engine
http://www.figmentcode.com/cgi-bin/npc1.pl
and saw what you used - the arrays are already there.
thanks again!
__________________

Useful links:
Graal Stats
Client Script Functions-GS1 to GS2
Serverside Script Functions-Gscript page
Particle Engine-Player Attributes
Server Options-Admin rights-Gmaps
Quote:
Originally Posted by Admins
Thanks for developing and improving playerworlds and such
Reply With Quote
  #10  
Old 08-02-2001, 01:19 PM
LiquidIce00 LiquidIce00 is offline
RadioActive Monkeeh
LiquidIce00's Avatar
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
LiquidIce00 is on a distinguished road
Send a message via ICQ to LiquidIce00 Send a message via AIM to LiquidIce00 Send a message via Yahoo to LiquidIce00
Quote:
Originally posted by Knightoffrost


>.< Its Xerphier... stupid Knightoffrost.. errr..gerrrr.. that name should die! I dont know why i picked it gah! Xerphier ! YOU HEAR ME ITS XERPHIER! Actually i have a xerphier account its just not p2p.
PLZ DONT KILL ME KNIGHT
i mean xerphier
__________________
LiquidIce *Owner* (UnholyNation)
-UN Website
http://www.unholynation.com
-UN Forum
http://forums.unholynation.com
-
-the thinker
-

-
onwall2 for nonp2p (i suck at onwall)
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 12:22 AM.


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