Graal Forums  

Go Back   Graal Forums > PlayerWorlds > PlayerWorlds Main Forum
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-15-2006, 02:55 AM
Andy0687 Andy0687 is offline
Enigma
Join Date: Feb 2002
Posts: 1,072
Andy0687 is on a distinguished road
For New Playerworld Owners

Hello,

So youve decided to purchase the very first playerworld you have ever had! Maybe you want it for a hobby, or maybe you want it for fun for you and all of the friends you know and play graal with.

No matter what the reason you have a server under control, and its time to use it! Only you are not really sure how.

Well dont fret, graal comes with a plethora of default scripts....

Well it used to anyways, but dont worry you can find some npcs somewhere and get to work! Oh but wait, most of them are gs1, and the use of gs1 is starting to become more and more discouraged with gs2 being simpler, cleaner, and more effective.

All of these decisions and choices must be overwhelming for a first time buyer who may have not been completely prepared for what he or she was facing, and to think, you just wanted to have fun!

Well the first thing is first, lets go ahead and get gs2 running on that server you own, go ahead and make a support center support ticket for it if you don't already have it. More support is happening for gs2 anyways.

Default npcs, oh, thats right, none exist. So get to learning!

Like I would end this post that way

You could dig through the wiki or graal.net, but here I have compiled* and written some scripts which may be very basic in nature, but are really helpful for all starting playerworlds. They work on and off of a gmap.

Maybe someone can and will eventually do it better, and maybe you will one day also, but for now this will help get you pushed in the right direction, and make sure that you have at least something to play with on that playerworld you own! Maybe if you are new to gs2, this will push you on the road to knowledge as well.

This Package Contains:
Bow
:: Basic Projectile bow, using angel.gani from mainfiles as the example
Bomb
:: Basic Bomb, great for gmaps (Thanks napo_p2p)
Jumprope
:: Simple Second Counting Jumprope
Tailor
:: Changes the look of player clothing on EX: "skin blue" (Thanks xXziroXx)
Staff/Boots
:: Staff Boots with speedlimit when this.speedlimit > 0
Neon-Suit
:: Very Simple Neon-Suit which changes player suit colors very quickly


The boots are more of a gimmick thing then anything, but they are fun to play with, and I hope you enjoy them and the other npcs in this little package.

Happy Times for you and the server and I hope you enjoy.

I will be more then glad to lend scripting support to new users, as well as playerworlds that need the help.

*Notes: Bomb npc taken from forum post by napo_p2p and edited very slightly and Tailor script taken from forum post by xXziroXx and edited slightly
Attached Files
File Type: zip Scripts.zip (2.4 KB, 127 views)
Reply With Quote
  #2  
Old 06-15-2006, 03:18 AM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Good job! Heres some better boots though..

PHP Code:
//#CLIENTSIDE
function onCreated()
{
  
this.speed 1;
  
setTimer(.05);
}

function 
onKeyPressedkeyname)
{
  if ( 
name == "z" ) {
    if ( 
this.on == player.chat "-- Staff Boots On --";
    else 
player.chat "-- Staff Boots Off --";

    
this.on = !this.on;
  }
}

function 
onTimeOut()
{
  if ( 
this.on == ) {
    for ( 
this.0this.<= 3this.++) {
      if ( 
keydown(this.i) ) {
        
playerx += vecx(this.i)*this.speed;
        
playery += vecy(this.i)*this.speed;
      }
    }
  }
  
setTimer(.05);
}

function 
onPlayerChats()
{
  if ( 
player.chat.tokenize()[0] == "/speed" ) {
    if ( 
player.chat.tokenize()[1] >= && player.chat.tokenize()[1] <= )  this.speed player.chat.tokenize()[1];
    else 
player.chat "Speed must be higher then 1 and lower then 5!";
  }


Activate them by pressing "z", and change speed by saying i.e. /speed 3.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #3  
Old 06-15-2006, 03:21 AM
Andy0687 Andy0687 is offline
Enigma
Join Date: Feb 2002
Posts: 1,072
Andy0687 is on a distinguished road
Quote:
Originally Posted by xXziroXx
Good job! Heres some better boots though..
Activate them by pressing "z", and change speed by saying i.e. /speed 3.
Thanks!

I was always bothered by boots which I had to turn on and off ;P

Also Thanks for the contribution I am trying to keep it simple for new players and world owners. You don't want to throw them right to the sharks right?

Last edited by Andy0687; 06-15-2006 at 03:36 AM..
Reply With Quote
  #4  
Old 06-15-2006, 02:05 PM
D4rKv310c1ty D4rKv310c1ty is offline
Registered User
Join Date: Feb 2005
Posts: 1,358
D4rKv310c1ty is on a distinguished road
Quote:
Originally Posted by Andy0687
Hello,

So youve decided to purchase the very first playerworld you have ever had! Maybe you want it for a hobby, or maybe you want it for fun for you and all of the friends you know and play graal with.

No matter what the reason you have a server under control, and its time to use it! Only you are not really sure how.

Well dont fret, graal comes with a plethora of default scripts....

Well it used to anyways, but dont worry you can find some npcs somewhere and get to work! Oh but wait, most of them are gs1, and the use of gs1 is starting to become more and more discouraged with gs2 being simpler, cleaner, and more effective.

All of these decisions and choices must be overwhelming for a first time buyer who may have not been completely prepared for what he or she was facing, and to think, you just wanted to have fun!

Well the first thing is first, lets go ahead and get gs2 running on that server you own, go ahead and make a support center support ticket for it if you don't already have it. More support is happening for gs2 anyways.

Default npcs, oh, thats right, none exist. So get to learning!

Like I would end this post that way

You could dig through the wiki or graal.net, but here I have compiled* and written some scripts which may be very basic in nature, but are really helpful for all starting playerworlds. They work on and off of a gmap.

Maybe someone can and will eventually do it better, and maybe you will one day also, but for now this will help get you pushed in the right direction, and make sure that you have at least something to play with on that playerworld you own! Maybe if you are new to gs2, this will push you on the road to knowledge as well.

This Package Contains:
Bow
:: Basic Projectile bow, using angel.gani from mainfiles as the example
Bomb
:: Basic Bomb, great for gmaps (Thanks napo_p2p)
Jumprope
:: Simple Second Counting Jumprope
Tailor
:: Changes the look of player clothing on EX: "skin blue" (Thanks xXziroXx)
Staff/Boots
:: Staff Boots with speedlimit when this.speedlimit > 0
Neon-Suit
:: Very Simple Neon-Suit which changes player suit colors very quickly


The boots are more of a gimmick thing then anything, but they are fun to play with, and I hope you enjoy them and the other npcs in this little package.

Happy Times for you and the server and I hope you enjoy.

I will be more then glad to lend scripting support to new users, as well as playerworlds that need the help.

*Notes: Bomb npc taken from forum post by napo_p2p and edited very slightly and Tailor script taken from forum post by xXziroXx and edited slightly
Cool, I always wanted to get my mitts on a server, though I don't like the whole idea of having to annually pay for it.
Reply With Quote
  #5  
Old 06-15-2006, 10:46 PM
Andy0687 Andy0687 is offline
Enigma
Join Date: Feb 2002
Posts: 1,072
Andy0687 is on a distinguished road
Quote:
Originally Posted by D4rKv310c1ty
Cool, I always wanted to get my mitts on a server, though I don't like the whole idea of having to annually pay for it.
Yeah well some people like the idea of getting a server, and find that the 100 dollars a year isnt that bad. They will proceed to buy it and jump in with no knowledge of what is going on.

I am trying to help them figure things out.
Reply With Quote
  #6  
Old 06-16-2006, 03:56 PM
D4rKv310c1ty D4rKv310c1ty is offline
Registered User
Join Date: Feb 2005
Posts: 1,358
D4rKv310c1ty is on a distinguished road
Quote:
Originally Posted by Andy0687
Yeah well some people like the idea of getting a server, and find that the 100 dollars a year isnt that bad. They will proceed to buy it and jump in with no knowledge of what is going on.

I am trying to help them figure things out.
I know And it's a cool post.

I reckon you should compile a mega pack of NPC scripts
Reply With Quote
  #7  
Old 06-16-2006, 07:33 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by D4rKv310c1ty
I know And it's a cool post.

I reckon you should compile a mega pack of NPC scripts
Sounds like fun, count me in!
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #8  
Old 06-17-2006, 04:47 AM
Andy0687 Andy0687 is offline
Enigma
Join Date: Feb 2002
Posts: 1,072
Andy0687 is on a distinguished road
Quote:
Originally Posted by D4rKv310c1ty
I know And it's a cool post.

I reckon you should compile a mega pack of NPC scripts
Haha yeah, I actually scripted most of those myself as well. I have one more I have planned to include in this thread. I am still working on the third one now though.

Quote:
Sounds like fun, count me in!
Maybe we could do something, because I know I am not stopping
Reply With Quote
  #9  
Old 06-17-2006, 04:49 AM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally Posted by Andy0687
Yeah well some people like the idea of getting a server, and find that the 100 dollars a year isnt that bad. They will proceed to buy it and jump in with no knowledge of what is going on.
Haha, idiots.
Reply With Quote
  #10  
Old 06-17-2006, 05:06 AM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
Oh god, please change the formatting in that tailor script or I will have to decapitate you and eat your innards.
__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote
  #11  
Old 06-17-2006, 11:12 AM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by ApothiX
Oh god, please change the formatting in that tailor script or I will have to decapitate you and eat your innards.
lol, I posted it while infected with the 'Contiga-Dissease'.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #12  
Old 06-17-2006, 01:48 PM
D4rKv310c1ty D4rKv310c1ty is offline
Registered User
Join Date: Feb 2005
Posts: 1,358
D4rKv310c1ty is on a distinguished road
Quote:
Originally Posted by ApothiX
Oh god, please change the formatting in that tailor script or I will have to decapitate you and eat your innards.
Now, now, Steve!

Be nice!
Reply With Quote
  #13  
Old 06-24-2006, 02:12 AM
Prozac Prozac is offline
one of the good guys
Prozac's Avatar
Join Date: Jan 2006
Posts: 245
Prozac is on a distinguished road
Send a message via AIM to Prozac
Quote:
Originally Posted by Andy0687
bow, using angel.gani from mainfiles as the example
Bomb
:: Basic Bomb, great for gmaps (Thanks napo_p2p)

the bomb script works on inside levels but not on my gmap.

is there some server option to make putbomb work on a gmap?
or whats wrong with the script. or gmaps.
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 06:36 AM.


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