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 05-28-2005, 06:32 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
New/Old Gralats

Does anyone remember the old gralats? You know, the ones that would just "disapear" after a while?

Well, I figured that if I get rid of the class "gralats" maybe they would work again. I figured wrong (ovbiously) now they just disapear as soon as I lay it.

Anyone know how to make the old gralats work again?
Reply With Quote
  #2  
Old 05-28-2005, 06:44 PM
maximus_asinus maximus_asinus is offline
RIP DarkCloud_PK
Join Date: Oct 2001
Location: Canada
Posts: 3,746
maximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond reputemaximus_asinus has a reputation beyond repute
if you drop gralats on GMAP I think the disappear instantly.
__________________
Save Classic!
Reply With Quote
  #3  
Old 05-28-2005, 06:47 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
Their is no gmap I am using.
Reply With Quote
  #4  
Old 05-28-2005, 07:23 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Quote:
Originally Posted by KuJi
Does anyone remember the old gralats? You know, the ones that would just "disapear" after a while?

Well, I figured that if I get rid of the class "gralats" maybe they would work again. I figured wrong (ovbiously) now they just disapear as soon as I lay it.

Anyone know how to make the old gralats work again?
hahaha, you're so funny
__________________
Reply With Quote
  #5  
Old 05-28-2005, 07:38 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
Quote:
Originally Posted by xAndrewx
hahaha, you're so funny
Haha, you just made me laugh so hard.

Last edited by KuJi; 05-28-2005 at 09:28 PM..
Reply With Quote
  #6  
Old 05-28-2005, 07:39 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Quote:
Originally Posted by KuJi
Haha, you just made me laugh hard.
How did I make you laugh 'hard'? o_o
__________________
Reply With Quote
  #7  
Old 05-28-2005, 07:57 PM
Velox Cruentus Velox Cruentus is offline
Registered User
Velox Cruentus's Avatar
Join Date: Dec 2004
Location: Quebec, Canada
Posts: 465
Velox Cruentus is on a distinguished road
Send a message via ICQ to Velox Cruentus Send a message via AIM to Velox Cruentus
Remake the class. Make it so that there is a timeout. On timeout, destroy.
__________________
In a world of change... Who'll you believe?
Reply With Quote
  #8  
Old 05-28-2005, 09:31 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
if (created) timeout = 0.1;
if (timeout) {
destroy;
timeout = 0.1;
}

err?

couldn't you just do if (created) destroy;

and:

that wouldn't make the old gralats appear?
Reply With Quote
  #9  
Old 05-28-2005, 09:38 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
He means you need to make a new gralat system.
While in the gralat system, put a timeout to like 30.
In the timeout put destroy;
If the gralat is still there without anyone touching it will be destroyed.
If you put
if (created) destroy;
It wouldn't show the gralat on the level, hence you're destroying it before anything is laid.
__________________
Reply With Quote
  #10  
Old 05-28-2005, 09:40 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
That still isn't the shiny old 1's :-(.

*Points at classic*

but i think they rescripted
Reply With Quote
  #11  
Old 05-28-2005, 09:54 PM
Evil_Trunks Evil_Trunks is offline
Evil
Evil_Trunks's Avatar
Join Date: Dec 2004
Posts: 391
Evil_Trunks is on a distinguished road
yes
__________________

Reply With Quote
  #12  
Old 05-28-2005, 09:58 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
These new gralats r the worst ;o
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 10:30 PM.


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