View Single Post
  #3  
Old 04-22-2005, 03:10 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
I am not sure how exactly you can emulate the chat bar in v3.1, but in v4 it should be quite easy since also the default chatbar is scripted there. You do ChatBar.destroy and then do something like this:

PHP Code:
function onKeypressed(keycode,keytext) {
  if (
keycode==9)
    
MyChatBar.show();

The only thing that you canot do currently with script is to let the chat text stay over the head until you move. When the chat text is modified by script it always disappears after a few seconds.
Reply With Quote