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 06-20-2012, 06:13 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
What is wiceblock.png

I was randomly browsing through the graal folders when I found the image wiceblock.png in weapons. I thought to myself that was from an original script since it was in the weapons folder, but when I looked on the internet about what it was, I could not find anything. What was the script that wiceblock.png was in supposed to do?

wiceblock.png
Reply With Quote
  #2  
Old 06-20-2012, 06:29 PM
smirt362 smirt362 is offline
Tee Hee
smirt362's Avatar
Join Date: Feb 2005
Location: Texas
Posts: 2,101
smirt362 has a brilliant futuresmirt362 has a brilliant futuresmirt362 has a brilliant futuresmirt362 has a brilliant futuresmirt362 has a brilliant futuresmirt362 has a brilliant futuresmirt362 has a brilliant future
Send a message via AIM to smirt362 Send a message via MSN to smirt362
Looks big enough for a graalian to fit into, maybe it was used to show players as frozen.
__________________

Don Hertzfeldt <3
Reply With Quote
  #3  
Old 06-20-2012, 06:36 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
Originally Posted by smirt362 View Post
Looks big enough for a graalian to fit into, maybe it was used to show players as frozen.
Ya, that makes sense, it probably was that, though the image is not semi transparent.
Reply With Quote
  #4  
Old 06-20-2012, 07:23 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
Quote:
Originally Posted by E_Man View Post
Ya, that makes sense, it probably was that, though the image is not semi transparent.
Semi-transparency wouldn't have been used in Graal images 10+ years ago.
__________________
Reply With Quote
  #5  
Old 06-20-2012, 07:30 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
It was invoked on the player upon touching a primitive Ice Arrow NPC:

PHP Code:
if (playerenterstimeout 0.05;
if (
playertouchsme) {
  if (
playerdir==2putleaps 5,x,y;
  else {
    
set icefreeze;
    
putnpc wiceblock.gif,iceblock.txt,playerx-2/16,playery-7/16;
  }
  
destroy;
}
if (
timeout) {
  
timeout 0.05;
  
y-=0.7;
  if (
y<2destroy;

PHP Code:
if (playerenters) {
  if (
icefreeze) {
    
freezeplayer 3;
    
playerx-2/16;
    
playery-7/16;
    unset 
icefreeze;
  }
  
timeout 3;
}
if (
timeout) {
  
putleaps 5,x+1,y;
  
putleaps 5,x+1,y+2;
  
destroy;

Reply With Quote
  #6  
Old 06-20-2012, 07:49 PM
E_Man E_Man is offline
E-Man
E_Man's Avatar
Join Date: Jun 2012
Posts: 81
E_Man will become famous soon enough
Quote:
t was invoked on the player upon touching a primitive Ice Arrow NPC:

PHP Code:
if (playerenters) timeout = 0.05;
if (playertouchsme) {
if (playerdir==2) putleaps 5,x,y;
else {
set icefreeze;
putnpc wiceblock.gif,iceblock.txt,playerx-2/16,playery-7/16;
}
destroy;
}
if (timeout) {
timeout = 0.05;
y-=0.7;
if (y<2) destroy;
}
PHP Code:
if (playerenters) {
if (icefreeze) {
freezeplayer 3;
x = playerx-2/16;
y = playery-7/16;
unset icefreeze;
}
timeout = 3;
}
if (timeout) {
putleaps 5,x+1,y;
putleaps 5,x+1,y+2;
destroy;
}
What is iceblock.txt, actually I have seen lots of scripts refer back to a .txt. Is there somewhere where these are located?
Reply With Quote
  #7  
Old 06-20-2012, 07:52 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
They also used to be within the weapons folder on a much older version of Graal.
Reply With Quote
  #8  
Old 06-20-2012, 08:28 PM
Luda Luda is offline
Registered User
Join Date: Aug 2005
Location: Canada
Posts: 2,071
Luda has much to be proud ofLuda has much to be proud ofLuda has much to be proud ofLuda has much to be proud ofLuda has much to be proud ofLuda has much to be proud of
Send a message via AIM to Luda
I think it was used during Classic: GTA's Magic/Well quest. When you touhed an ice block you would be frozen for a couple of seconds, could have been a different graphic though
Reply With Quote
  #9  
Old 06-20-2012, 08:30 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Old as dirt. Thor posted the original script, but it was never used. It's as old as the Shuriken and Hammer scripts.
Reply With Quote
  #10  
Old 06-20-2012, 10:41 PM
maximus_asinus maximus_asinus is offline
RIP DarkCloud_PK
Join Date: Oct 2001
Location: Canada
Posts: 3,745
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 repute
Didn't the old cane of ... something use this? Maybe it is what Thor spoke of. I remember laming people in sister Gertrude's with it.
__________________
Save Classic!
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:06 AM.


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