PtokaX forum

Archive => Archived 4.0 boards => Request for Lua 4 scripts => Topic started by: (NL)waarom on 28 April, 2005, 21:50:00

Title: ??chat
Post by: (NL)waarom on 28 April, 2005, 21:50:00
Hai guys
go a requst for a script is.
there are vipchats  / masterchats.
But is there anybody who can made a chat scrip where i can put names in.
So the scrip reacts on names instad of profiel
Thanks in advance
Title:
Post by: Tw?sT?d-d?v on 28 April, 2005, 22:19:15
not sure if some1 could alter this to suit ur needs ....

-- simple standalone CallBot by bonki 08/17/03

sBotName    = "CallBot";

sCallMsg    = "[nick] awaits you eagerly in main chat!"
sCallPhrase = "!call";

function DataArrival(curUser, sData)
  local _, _, cmd, args = string.find(sData, "%b<>%s+(%S+)%s*([^%|]*)%|$");

  if (cmd == nil) then
    return 0; end;

  cmd = string.lower(cmd);
  if (cmd == sCallPhrase) then
    curUser:SendData(sData);

    callUser = GetItemByName(args)
    if (callUser) then
      sMsg = string.gsub(sCallMsg, "%[nick%]", curUser.sName);
      SendPmToNick(callUser.sName, sBotName, sMsg);
    else
      if (string.len(args) > 0) then
        curUser:SendData(sBotName, args.." is currently not connected!");
      else
        curUser:SendData(sBotName, "Syntax: "..sCallPhrase.." ");
      end
    end

    return 1;
  end
end

btw this is in lua 4    so needs converting
Title: ??chat
Post by: (NL)waarom on 29 April, 2005, 10:42:27
thanks jay gonne look if i can do something whit it
Title:
Post by: jiten on 29 April, 2005, 14:05:57
QuoteOriginally posted by (NL)waarom
Hai guys
go a requst for a script is.
there are vipchats  / masterchats.
But is there anybody who can made a chat scrip where i can put names in.
So the scrip reacts on names instad of profiel
Thanks in advance
Hi there.
Well, not sure if this is what u need but, check this (http://board.univ-angers.fr/thread.php?threadid=3760&boardid=26&sid=3d677894fbf8ed0080eb50a97a2a675d) and this (http://board.univ-angers.fr/thread.php?threadid=3755&boardid=28&sid=3d677894fbf8ed0080eb50a97a2a675d) links.

Cheers
Title: ??chat
Post by: (NL)waarom on 29 April, 2005, 15:09:00
what i mean is a chat box for selected people i put the name into the scrip en they can enter the chat box
it must be a chat for a cople of op's mod's and masters
my problem is that the normal chats work on profiles.
Title:
Post by: jiten on 29 April, 2005, 15:31:14
QuoteOriginally posted by (NL)waarom
what i mean is a chat box for selected people i put the name into the scrip en they can enter the chat box
it must be a chat for a cople of op's mod's and masters
my problem is that the normal chats work on profiles.
Try this (http://board.univ-angers.fr/thread.php?threadid=3760&boardid=26&sid=3d677894fbf8ed0080eb50a97a2a675d) one then.
It will suit ur needs perfectly.
With this one, u can create a chatroom with(out) specifying default profiles.
For the first case, use "!mkchat chatname minprofile" and for the second one just "!mkchat chatname".
Then, u just need to invite whoever u want.

Cheers
Title: ??chat
Post by: (NL)waarom on 29 April, 2005, 22:01:00
nice one jiten thanks a lot