Quik easy help needed
 

News:

29 December 2022 - PtokaX 0.5.3.0 (20th anniversary edition) released...
11 April 2017 - PtokaX 0.5.2.2 released...
8 April 2015 Anti child and anti pedo pr0n scripts are not allowed anymore on this board!
28 September 2015 - PtokaX 0.5.2.1 for Windows 10 IoT released...
3 September 2015 - PtokaX 0.5.2.1 released...
16 August 2015 - PtokaX 0.5.2.0 released...
1 August 2015 - Crowdfunding for ADC protocol support in PtokaX ended. Clearly nobody want ADC support...
30 June 2015 - PtokaX 0.5.1.0 released...
30 April 2015 Crowdfunding for ADC protocol support in PtokaX
26 April 2015 New support hub!
20 February 2015 - PtokaX 0.5.0.3 released...
13 April 2014 - PtokaX 0.5.0.2 released...
23 March 2014 - PtokaX testing version 0.5.0.1 build 454 is available.
04 March 2014 - PtokaX.org sites were temporary down because of DDOS attacks and issues with hosting service provider.

Main Menu

Quik easy help needed

Started by QuikThinker, 12 December, 2004, 19:40:22

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

QuikThinker

Jus wanna know how I make a simple pop-up text window wid sum information in it on hub-entry pls.

Thanx in advance,
Quik.

enema

it should look somethin like this:
Bot = "dooh"

function NewUserConnected(user)
	user:SendPM (Bot,"your text here") 
end

anyway go to how to's, there are some good stuff in there!

Herodes

first of you need to register a bot in the userlist ...
it is going to send the pms .. if the sender isnt in the userlist the user logging in possible will fail to have it in pm ...
It will be most likely be displayed like :

"Private Message from botname : text here ..."

in the user's mainchat...
This can be arranged like this :

function Main()
   frmHub:UnregBot("bot_name") 
   --- this is done because on script restart, it is better to unregister and then register the bot ,... 
   --- it avoids dirty user-oplists ...
   --- Reg the bot now!
   frmHub:RegBot("bot_name")
end

secondly you will need to set up the NewUserconnected function ... this is triggered when a user logs in ..
( that is received the $LoggedIn protocol command )

smth like this will do

function NewUserConnected(user)
     --- user:SendPM( from, msg )
    user:SendPM("bot_name", "the message")
end

I hope this gets u on the way ...
if you want to read from a textfile search for "function Readtextfile("

You'll find a nice function that returns a string so you can alter the NewUserConnected(user) to smth like this :

function NewUserConnected(user)
   user:SendPM("bot_name", Readtextfile("mylogin.txt") )
end

QuikThinker

I'll give that a go now man thanx 4 ur help.

SMF spam blocked by CleanTalk