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 07-25-2009, 11:58 PM
[email protected] jamerson61894@yahoo.com is offline
Banned
Join Date: Jul 2008
Posts: 83
jamerson61894@yahoo.com is an unknown quantity at this point
Red face Scripting Question?

Hi, I am making a shovel script and im using the weaponfired because when you press d, it digs. Well, the players are just holding d and are getting money. How do I make it to where you have to press it over and over in order to get money, rather than holding d?

Thanks.
Reply With Quote
  #2  
Old 07-26-2009, 12:38 AM
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
Well you need to use a Boolean flag to prevent the execution of job related script. Here's an example where I use a boolean flag and a loop to unset the flag when the key isn't pressed.

PHP Code:
//#CLIENTSIDE
function onKeyPressed() {
  if (
keydown(4) && !this.keydown) {
    
this.keydown true;
    
doJobStuff();
    
setTimer(0.05);
  }
}

function 
onTimeout() {
  
this.keydown keydown(4);
  if (
this.keydownsetTimer(0.05);
}

function 
doJobStuff() {
  
player.chat "shoveling dawg";

__________________
Quote:
Reply With Quote
  #3  
Old 07-26-2009, 12:42 AM
[email protected] jamerson61894@yahoo.com is offline
Banned
Join Date: Jul 2008
Posts: 83
jamerson61894@yahoo.com is an unknown quantity at this point
hmm but it still is letting you hold it.
Reply With Quote
  #4  
Old 07-26-2009, 12:59 AM
[email protected] jamerson61894@yahoo.com is offline
Banned
Join Date: Jul 2008
Posts: 83
jamerson61894@yahoo.com is an unknown quantity at this point
Nevermind, I mingled with it and found a way by using client.

Thanks though.

Case Closed.
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 02:03 PM.


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