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 08-18-2003, 12:31 AM
SilentSkripter1988 SilentSkripter1988 is offline
Banned
Join Date: Aug 2003
Posts: 56
SilentSkripter1988 is on a distinguished road
Cool Contribution, a Safe!

Heres a safe script I made, if anyone wants to use it or correct any errors in it, go ahead.

// NPC made by Silent Skripter *Scripting*
if (created) {
}
if (playertouchsme) {
}
if (playerchats && strcontains(#c,/pay)){
tokenize #c;
this.rupeeadd = strtofloat(#t(1));
if (playerrupees >= this.rupeeadd){
if (this.rupeeadd > 0){
playerrupees -= this.rupeeadd;
this.safemoney += this.rupeeadd;
setcharprop #c,#v(this.safemoney) dollars in safe!;
timeout=5;
}
}
}

if (playerchats && strcontains(#c,/take)){
tokenize #c;
this.takemoney = strtofloat(#t(1));
if (this.safemoney >= this.takemoney){
if (this.takemoney > 0){
if (strequals(#a,Your Account Here!)){
playerrupees += this.takemoney;
this.safemoney -= this.takemoney;
setplayerprop #c, Took #v(this.takemoney) dollars out of safe!;
setcharprop #c, #v(this.safemoney) left in safe!
timeout = 5;
}
}
}
}

if (timeout){
setcharprop #c, ;
Reply With Quote
  #2  
Old 08-18-2003, 12:34 AM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
use [code] tags
Reply With Quote
  #3  
Old 08-18-2003, 12:44 AM
mhermher mhermher is offline
galase galase!
mhermher's Avatar
Join Date: Jun 2001
Location: Sweden, Stockholm.
Posts: 2,012
mhermher is on a distinguished road
Send a message via ICQ to mhermher Send a message via AIM to mhermher Send a message via Yahoo to mhermher
/pay -50
__________________
Donate money for my trip to Germany

Adiarde Manager
Reply With Quote
  #4  
Old 08-18-2003, 12:46 AM
SilentSkripter1988 SilentSkripter1988 is offline
Banned
Join Date: Aug 2003
Posts: 56
SilentSkripter1988 is on a distinguished road
Read the script, /pay -50 wont work. It makes sure the number is at least 1.
Reply With Quote
  #5  
Old 08-18-2003, 06:05 AM
wonderboysp2p wonderboysp2p is offline
Registered User
wonderboysp2p's Avatar
Join Date: Sep 2002
Location: -Wonderboy
Posts: 537
wonderboysp2p is on a distinguished road
Send a message via AIM to wonderboysp2p
/pay 2.5
__________________

we are the llama FORUms!!!EWQ Ce13d5423f23!! 2e1 @$6tgv3uy65!
Reply With Quote
  #6  
Old 08-18-2003, 05:52 PM
SilentSkripter1988 SilentSkripter1988 is offline
Banned
Join Date: Aug 2003
Posts: 56
SilentSkripter1988 is on a distinguished road
Fixed.
Reply With Quote
  #7  
Old 08-18-2003, 07:59 PM
Alexander Alexander is offline
Registered User
Join Date: Apr 2003
Location: California
Posts: 246
Alexander is on a distinguished road
Send a message via AIM to Alexander
You have some errors in your script.

setcharprop #c, #v(this.safemoney) left in safe!;

if (timeout){
setcharprop #c, ;
}
Also learn how to style, or use the style button in editor :o
Reply With Quote
  #8  
Old 08-18-2003, 08:33 PM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
Quote:
Originally posted by Alexander
You have some errors in your script.

setcharprop #c, #v(this.safemoney) left in safe!;

if (timeout){
setcharprop #c, ;
}
Also learn how to style, or use the style button in editor :o
the forums breaks people's styling unless you use [code] tags :o
Reply With Quote
  #9  
Old 08-18-2003, 08:42 PM
Alexander Alexander is offline
Registered User
Join Date: Apr 2003
Location: California
Posts: 246
Alexander is on a distinguished road
Send a message via AIM to Alexander
Quote:
Originally posted by Python523


the forums breaks people's styling unless you use [code] tags :o
didnt know
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 03:24 PM.


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