Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Same Script, Different Problem (https://forums.graalonline.com/forums/showthread.php?t=27497)

zallus-k 04-15-2002 01:16 AM

Same Script, Different Problem
 
I can't seem to find what's wrong with this. It's supposed to show the player's current weapon in the middle of a box, then the player's next weapon below it, and previous weapon above it.

NPC Code:

function ws() {
showimg 100,wpn2.png,x*16,y*16;
changeimgvis 100,4;
showimg 102,#W,x*16+7,y*16+43;
changeimgvis 102,4;
if(selectedweapon > 0) {
if(!startswith(-,#w(selectedweapon-1))) {
showimg 103,#W(selectedweapon-1),x*16+7,y*16+7;
changeimgcolors 103,1,1,1,0.99;
changeimgvis 103,4;
}else{
showimg 103,#W(selectedweapon-2),x*16+7,y*16+7;
changeimgcolors 103,1,1,1,0.99;
changeimgvis 103,4;
}
}else{hideimg 103;}

if(selectedweapon < (weaponscount-1)) {
if(!startswith(-,#w(selectedweapon-1))) {
showimg 104,#W(selectedweapon+1),x*16+7,y*16+79;
changeimgcolors 104,1,1,1,0.99;
changeimgvis 104,4;
}else{
showimg 104,#W(selectedweapon21),x*16+7,y*16+79;
changeimgcolors 104,1,1,1,0.99;
changeimgvis 104,4;
}
}else{hideimg 104;}
}


Dustey 04-15-2002 01:47 AM

so whats the problem?

zallus-k 04-15-2002 02:00 AM

.
 
Well, if you aren't going to bother thinking about it, the problem is what happens to invisible weapons, and at the start and end of the list.

Dustey 04-15-2002 03:14 AM

Re: .
 
Quote:

Originally posted by zallus-k
Well, if you aren't going to bother thinking about it, the problem is what happens to invisible weapons, and at the start and end of the list.
thinking is hard and for people who dont play graal;)

zallus-k 04-15-2002 06:14 AM

I was not posting a complete script, as I had no idea which part of this code wasn't functioning. But as I do now, and no longer need help with this individual script, I'll stop caring.:o


All times are GMT +2. The time now is 01:00 AM.

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