View Single Post
  #6  
Old 06-28-2001, 10:58 AM
FxChiP FxChiP is offline
Registered User
Join Date: Mar 2001
Location: Pittsburgh, PA
Posts: 451
FxChiP is on a distinguished road
Send a message via ICQ to FxChiP Send a message via AIM to FxChiP
Quote:
Originally posted by Tyhm
The workarounds are easy, have different NPCs show the image than the one that's hiding, but imagine doing a chest that's supposed to hide itself (the closed chest) and show a key. You have to change the image to an open chest, the hide the image of the closed chest that's usually over the drawunderplayer open chest, and show the key over it, it's a nightmare.
?

Dude, that's easy to do, you don't even really need two NPCs to do it.

NPC Code:

if (playertouchsme && !chestopen) {
setgif chestopen.gif;
showimg 0,key.gif,x+.5,y+.5;
set chestopen;
}

if (playerenters && chestopen) {
setgif chestopen.gif;
}

__________________


"The administrators of Graal Online will not be responsible for corrupting of young minds. " -User Agreement.. heh-heh-heh

"4. Racial intolerance is not allowed. [NEW!]" -User License Agreement (I love the "[NEW!]" part)

"No more drugs for THAT man!" -TrueHeaT

"... or does
it stand for something like
'[B]hala is the [M]an who decides so lets [X]ross the fingers'?)" -Stefan, in response to a guild dispute over the guild name "BMX"

[img src=http://www.lucitanica.f2s.com/shaun-revolutionsig.gif]
Time to piss Lycia off!
Reply With Quote