Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

End Key Server Error


Gohan
 Share

Recommended Posts

Whenever someone presses the End key I get an error.

> Eclipse SE Server
> LINE: 1
> COLLUMN: 0
> CODE:

I'm using eclipse stable. I need this error to go away because my computer and the computer where the server is are two separate computers. I can't get up and go across the room every time someone presses End, and I'm not gonna babysit my server all day.
Link to comment
Share on other sites

Fixed. At first I couldn't find the problem, but I found it.

All the 's making the box at the top were misplaced. Just had to put them back in.

EDIT: nmv -.- its not fixed. it seems to only happen when in the chat.

Here's my hotscript:
```
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Module: HotScript.ess                     '
' Author: Stephan J.R. van Schaik '
' Date: August 30th, 2009.                       '
' Version: 1.0.0                         '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Function: HotScript                     '
' Brief: executes when a hotkey is pressed client-side.     '
' Parameters:                         '
' Index: the index number of the player.             '
' Key: the pressed key.                     '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub HotScript(Index, Key)
Select Case Key
Case KEY_PAGEUP
Call PlayerMsg(Index, "You pressed the PageUp key.", BRIGHTRED)

Case KEY_DELETE
Call PlayerMsg(Index, "You pressed the Delete key.", BRIGHTRED)

Case KEY_END
Call PlayerMsg(Index, "You pressed the End key.", BRIGHTRED)

Case KEY_PAGEDOWN
Call PlayerMsg(Index, "You pressed the PageDown key.", BRIGHTRED)
Case 5
Call Profile(index)
Case Else
Call PlayerMsg(Index, "An unknown key has been pressed.", BRIGHTRED)
End Select
End Sub

```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...