Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 06-28-2004, 07:22 AM
bloodpet bloodpet is offline
Gold / VIP Member
bloodpet's Avatar
Join Date: Mar 2004
Posts: 43
bloodpet is on a distinguished road
Post Free Time Script Example

NPC Code:

// This goes in the database (db)
if (created || initialized) {
t = s;
timeout = 1;
}
if (timeout) {
t++;
if (t>=86400)
t = 0; // resets time
s = t;

timeout = 1;
}



NPC Code:

// this goes in the weapon
i = s; // gets the curent time
h = int(i / 3600); // the hour
m = int((i - h * 3600) / 60); // the min
s = int((i - h * 3600) - (m * 60)); // the sec
if (h > 10) {
setstring this.p,AM; // changed to am and pm
}else {setstring this.p,PM;}
h ++;
if (h > 12) {
h -= 12; // 12 hour mode
}
if (m < 10) {
setstring this.m,0#v(m); // enables 01-09
}else {setstring this.m,#v(m);}

if (s < 10) {
setstring this.s,0#v(s); // enables 01-09
}else {setstring this.s,#v(s);}



*Note: you have to add something in here to show the time for instance:

NPC Code:

showimg 999,@ariel@bottom@#v(h):#s(this.m):#s(this.s) #s(this.p) #s,20,screenheight-30;
changeimgvis 999,5;
changeimgzoom 999,1;



If you find any bugs please post them here. Also if oy uhave any suggestions, suggest away. Im only here to help.

You need to stop the DB script befor you can set the time. Its scripted s oyou can shange server flags without disturbing the time, thank you for oyur support. ~bloodpet

I actualy thought the this.m and this.s were needed rather then doign some other if comands followed by multiple display scritps that get messy.....

Last edited by bloodpet; 06-28-2004 at 08:34 PM.. Reason: Added [CODE] tags
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 05:10 PM.


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