Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > Old Scripting Engine (GS1)
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 03-25-2007, 02:04 PM
godofwarares godofwarares is offline
Webmaster
godofwarares's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 552
godofwarares is on a distinguished road
Send a message via ICQ to godofwarares Send a message via AIM to godofwarares Send a message via MSN to godofwarares Send a message via Yahoo to godofwarares
Quote:
Originally Posted by Twinny View Post
Umm... you can't set a players sword power or hearts clientside. Also, this.firstpower and this.firsthearts are undefined. You also managed to mix up the order (clientr. is set when the player leaves?).

I'll write it in GS2 first and i'll try and work it out in GS1
PHP Code:
function onCreated()
{
  
this.sethearts=10;
  
this.setsword=2;
}

function 
onPlayerEnters()
{
  
player.clientr.setsword player.swordpower;
  
player.clientr.sethearts player.fullhearts;
  
player.swordpower this.setsword;
  
player.fullhearts this.sethearts;
  
player.chat "Default stats set!";
}

function 
onPlayerLeaves()
{
  
player.swordpower player.clientr.setsword;
  
player.fullhearts player.clientr.sethearts;
  
player.clientr.setsword "";
  
player.clientr.sethearts "";
  
player.chat "Original Stats Restored";

In GS1:

PHP Code:
if (created)
{
     
this.sethearts 10;
     
this.setsword 2;
}

if (
playerenters)
{
     
setstring clientr.setswordplayerswordpower;
     
setstring clientr.setheartsplayerfullhearts;
     
playerswordpower this.setsword;
     
playerfullhearts this.sethearts;

     
setplayerprop #c,Default stats set!;
}

if (
playerleaves)
{
     
playerswordpower clientr.setsword;
     
playerfullhearts clientr.sethearts;
     
setstring clientr.setsword,;
     
setstring clientr.sethearts,;

     
setplayerprop #c,Original Stats Restored;


* I love how when people ask for GS1, everyone gives him GS2 ...
__________________
What signature? I see no signature?
Reply With Quote
  #2  
Old 03-25-2007, 03:26 PM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Quote:
Originally Posted by godofwarares View Post
* I love how when people ask for GS1, everyone gives him GS2 ...
I skipped GS1 all together so I don't know it all. I post a solution in GS2 in case the original poster / someone else can use it to translate to GS1.
Reply With Quote
  #3  
Old 03-25-2007, 11:45 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
Quote:
Originally Posted by godofwarares View Post
In GS1:

* I love how when people ask for GS1, everyone gives him GS2 ...
You almost had it right:

HTML Code:
if (created)
{
     this.sethearts = 10;
     this.setsword = 2;
}

if (playerenters)
{
     setstring clientr.setsword,#v(playerswordpower);
     setstring clientr.sethearts,#v(playerfullhearts);
     playerswordpower = this.setsword;
     playerfullhearts = this.sethearts;

     setplayerprop #c,Default stats set!;
}

if (playerleaves)
{
     playerswordpower = strtofloat(#s(clientr.setsword));
     playerfullhearts = strtofloat(#s(clientr.sethearts));
     setstring clientr.setsword,;
     setstring clientr.sethearts,;

     setplayerprop #c,Original Stats Restored;
}
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:06 AM.


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