sigh
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function repeatedly_execute() {
Ã, // LEC Statusline
string bunky;string texty; int cursy;
StrCopy (texty, "");Ã, cursy=GetCursorMode();Ã,Â
if (cursy==0){Ã, Ã, StrCat(texty,"Walk to ");}Ã,Â
else if (cursy==1) {Ã, Ã, StrCat (texty,"Look at ");}Ã,Â
else if (cursy==2) {Ã, Ã, StrCat(texty,"Use ");}Ã,Â
else if (cursy==3) {Ã, Ã, StrCat(texty,"Talk to ");}Ã,Â
else if (cursy==4) {Ã, Ã, StrCat(texty,"Use ");Ã, Ã,Â
GetInvName (player.activeinv, bunky);Ã, Ã,Â
StrCat(texty,bunky);Ã, Ã, StrCat(texty," with ");}Ã,Â
else if (cursy==5) {Ã, Ã, StrCat(texty, "Pick up ");}Ã,Â
else if (cursy==8) {Ã, Ã, StrCat(texty, "Open ");}Ã,Â
GetLocationName(mouse.x,mouse.y,bunky);Ã,Â
StrCat(texty,bunky);Ã,Â
SetLabelText (0,0,texty);
}
if (GetGUIAt(mouse.x,mouse.y) == 4) SetMouseCursor(6);
else if (GetGUIAt(mouse.x,mouse.y) ==3) SetMouseCursor(6);
else SetDefaultCursor();
Quote from: Goot on Sat 28/08/2004 06:44:06
Go to general settings. Make sure 'automatically move character is walk mode' is checked. It probably isn't for some weird reason. Also, maybe you're using a different cursor mode which has somehow ended up with the walk picture. Oh, and make sure that guy is the player character.
Quote from: mousemat on Fri 27/08/2004 10:22:12
i saw someone bid £93 on a piece of paper telling them how to get a phone for £20
Quote from: JaysSite on Fri 27/08/2004 22:10:30
Change that code to:Code: ags if (GetGUIAt(mouse.x,mouse.y) == 4) SetMouseCursor(6); else if (GetGUIAt(mouse.x,mouse.y) ==3) SetMouseCursor(6); else SetDefaultCursor();
[partidontget]If you still get the error, post the code before and after the "if" statement as well.[/partidontget]
if (GetGUIAt(mouse.x,mouse.y) == 4) SetMouseCursor(6);
else SetDefaultCursor();
else if (GetGUIAt(mouse.x,mouse.y) ==3) SetMouseCursor(6);
else SetDefaultCursor();
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.059 seconds with 14 queries.