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 01-14-2005, 07:33 AM
Moonite Moonite is offline
<3
Join Date: Dec 2003
Location: HollanD
Posts: 595
Moonite is an unknown quantity at this point
Send a message via AIM to Moonite Send a message via Yahoo to Moonite
Scripts Tutorial?

I dont know if im here right

Are there any Scripting Site's were I can learn how to script?
I really want to learn scriptingnow because im a Great lat but still Good Lookign without nice Scripts are like (Edited out by Moonie, give me a break)

Last edited by Darlene159; 01-14-2005 at 03:44 PM..
Reply With Quote
  #2  
Old 01-14-2005, 02:18 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
It would be good if you could read all the newfeatures, they are in your Graal folder. These documents that I've uploaded are helpful too.
Attached Files
File Type: txt docu_hp.txt (9.8 KB, 256 views)
File Type: txt docu_movementtutorial.txt (11.9 KB, 191 views)
File Type: txt docu_npcserver.txt (12.5 KB, 307 views)
File Type: txt docu_optimization.txt (8.6 KB, 187 views)
File Type: txt docu_scriptclasses.txt (3.0 KB, 196 views)
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
Reply With Quote
  #3  
Old 01-14-2005, 02:19 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
There is a string-variable document left.
Attached Files
File Type: txt docu_stringvariables.txt (8.5 KB, 201 views)
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
Reply With Quote
  #4  
Old 01-14-2005, 02:27 PM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Osrs, has your 'scripting support' team released any documents yet?
__________________
Reply With Quote
  #5  
Old 01-14-2005, 02:30 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
Quote:
Originally Posted by Kaimetsu
Osrs, has your 'scripting support' team released any documents yet?
I would not use the term 'team' anymore, everybody promises many things and jumps out after some time. I wrote some documents and uploaded on Debug to some GST check it out, I believe PS did and posted the documents somewhere (or will post).
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
Reply With Quote
  #6  
Old 01-14-2005, 03:21 PM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally Posted by osrs
I would not use the term 'team' anymore, everybody promises many things and jumps out after some time
Told you so.

Quote:
I wrote some documents and uploaded on Debug to some GST check it out, I believe PS did and posted the documents somewhere (or will post)
Haven't seen that yet.
__________________
Reply With Quote
  #7  
Old 01-14-2005, 08:25 PM
Shaun Shaun is offline
Registered User
Shaun's Avatar
Join Date: Jul 2003
Location: Canada
Posts: 1,070
Shaun is a jewel in the roughShaun is a jewel in the rough
The last time I read newfeatures, I think something was mentioned that they're trying to replace

if (playersays(whatever))

with

if (strequals(#c,whatever))

So yeah, I haven't really kept up to date. I think anything after 1.34 is completely new to me, except for a couple of lights stuff. But I only really know setimgpart to manipulate lights :X
Reply With Quote
  #8  
Old 01-14-2005, 08:44 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
Quote:
Originally Posted by Shaun
The last time I read newfeatures, I think something was mentioned that they're trying to replace

if (playersays(whatever))

with

if (strequals(#c,whatever))

So yeah, I haven't really kept up to date. I think anything after 1.34 is completely new to me, except for a couple of lights stuff. But I only really know setimgpart to manipulate lights :X

Indeed, but that must be used with an event block :

NPC Code:

if (playerchats){
if (strequals(#c,text)) ;
}

__________________
Former Global Scripting Team Member


Reply With Quote
  #9  
Old 01-14-2005, 08:54 PM
Shaun Shaun is offline
Registered User
Shaun's Avatar
Join Date: Jul 2003
Location: Canada
Posts: 1,070
Shaun is a jewel in the roughShaun is a jewel in the rough
Yeah, I found that out when a lot of my scripts weren't working properly.

Also, I found a lot of stuff didn't work because apparently I have to add something like //#CLIENTSIDE to stuff. Just really irritates me. :P

I remember when the LAT used to include scripters (and graphics people, etc). Really, a level is composed of tiles, scripts, and graphics. But I guess a LAT is now considered any single person who tiles. So weird how things change...
Reply With Quote
  #10  
Old 01-15-2005, 02:39 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
Yes, also anything above //#CLIENTSIDE is serverside. Without putting //#CLIENTSIDE your script will be read serverside - and not everything that works clientside works serverside.
__________________
Former Global Scripting Team Member


Reply With Quote
  #11  
Old 01-15-2005, 04:42 PM
Slash-P2P Slash-P2P is offline
Banned
Join Date: May 2004
Location: Burning Blade
Posts: 941
Slash-P2P is on a distinguished road
Quote:
Originally Posted by osrs
I would not use the term 'team' anymore, everybody promises many things and jumps out after some time. I wrote some documents and uploaded on Debug to some GST check it out, I believe PS did and posted the documents somewhere (or will post).
I made the Q-Menu tutorial (although it sucks)
Reply With Quote
  #12  
Old 01-15-2005, 07:05 PM
Projectshifter Projectshifter is offline
The David
Projectshifter's Avatar
Join Date: Apr 2002
Location: USA
Posts: 912
Projectshifter is an unknown quantity at this point
Send a message via ICQ to Projectshifter Send a message via AIM to Projectshifter Send a message via MSN to Projectshifter Send a message via Yahoo to Projectshifter
Quote:
Originally Posted by osrs
I wrote some documents and uploaded on Debug to some GST check it out, I believe PS did and posted the documents somewhere (or will post).
I rewrote the "library" one in more standard english and redid bits and pieces of it to make it a little more friendly and understandable. But, it was your document so I did not want to intrude and release it.
__________________
Who has time for life these days?
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 07:46 PM.


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