Graal Forums  

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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-11-2011, 06:13 PM
Diablo1 Diablo1 is offline
Registered User
Join Date: Jan 2011
Posts: 5
Diablo1 is on a distinguished road
adapt gs1 to gs2

why is this not working?

function onPlayerTouchsMe(){
setcoloreffect 0,0,1,0.4;
sleep 1;
setcoloreffect 1,1,1,1;
}
Reply With Quote
  #2  
Old 01-11-2011, 06:18 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
It needs to be clientside. You should also not mix old GScript with new GScript.

PHP Code:
//#CLIENTSIDE
function onPlayerTouchsMe(){
  
setcoloreffect(0,0,1,0.4);
  
sleep(1);
  
setcoloreffect(1,1,1,1);

Keep in mind that this will only work online.
__________________
Reply With Quote
  #3  
Old 01-11-2011, 08:31 PM
Twilikari Twilikari is offline
Registered User
Twilikari's Avatar
Join Date: Nov 2010
Location: America
Posts: 86
Twilikari is on a distinguished road
Quote:
Originally Posted by Diablo1 View Post
why is this not working?

function onPlayerTouchsMe(){
setcoloreffect 0,0,1,0.4;
sleep 1;
setcoloreffect 1,1,1,1;
}
If you want it to work offline. use GS1 though:
PHP Code:
//#CLIENTSIDE
if (playertouchsme) {
  
setcoloreffect 0,0,1,0.4;
  
sleep 1;
  
setcoloreffect 1,1,1,1;

Reply With Quote
  #4  
Old 01-11-2011, 09:35 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by Twilikari View Post
If you want it to work offline. use GS1 though.
Judging by his post title he already had it working offline/GS1.
__________________
Quote:
Reply With Quote
  #5  
Old 01-11-2011, 11:41 PM
Diablo1 Diablo1 is offline
Registered User
Join Date: Jan 2011
Posts: 5
Diablo1 is on a distinguished road
well thx and its she* no he :3 but thx lol
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:37 PM.


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