Author Topic: bottomPrint Booleans  (Read 831 times)

What are the bottomPrint booleans, anyone?


(if it has numbers as a boolean, lemme know)

Wth is a bottomprint boolean

The bottomPrint parameters are:

%client.bottomPrint(%message, %timeToDisplay, %doNotDisplayBar);

If you set %doNotDisplayBar to 1, that black bar will not appear.

Not sure I exactly understand your question. But I'll explain the bottomprint function.

commandtoclient(%client,'bottomprint',"Your message here!",3);

We'll start off with the start of the function, the commandtoclient . What that does is send information to the client, and the clients job is to display it. Next is the %client . Which ever client object has been selected, will be the one to receive the bottomprint. 'bottomprint' tells the player which function to do. And "Your message here!" . Obviously this would be your message to be displayed. And that last little number at the end, that would be how long the message would appear for. You can leave it as -1 to stay forever. (until they receive their next bottomprint).

Hope this helped.

Wth is a bottomprint boolean

how do you not know this?




The bottomPrint parameters are:

%client.bottomPrint(%message, %timeToDisplay, %doNotDisplayBar);

If you set %doNotDisplayBar to 1, that black bar will not appear.

thx

Not sure I exactly understand your question. But I'll explain the bottomprint function.

commandtoclient(%client,'bottomprint',"Your message here!",3);

We'll start off with the start of the function, the commandtoclient . What that does is send information to the client, and the clients job is to display it. Next is the %client . Which ever client object has been selected, will be the one to receive the bottomprint. 'bottomprint' tells the player which function to do. And "Your message here!" . Obviously this would be your message to be displayed. And that last little number at the end, that would be how long the message would appear for. You can leave it as -1 to stay forever. (until they receive their next bottomprint).

Hope this helped.

sorta, but i have yours a Greeks, which one is correct?

how do you not know this?
Because I don't know what a "bottomprint boolean" is supposed to be?

sorta, but i have yours a Greeks, which one is correct?
Both are correct but honorabl has forgotten the last parameter for showing the box around it.

Both are correct but honorabl has forgotten the last parameter for showing the box around it.


what would be the last paremeter?


what would be the last paremeter?
You can see it in greeks post.

The bottomPrint parameters are:

%client.bottomPrint(%message, %timeToDisplay, %doNotDisplayBar);

If you set %doNotDisplayBar to 1, that black bar will not appear.

the %message, and %timeTo Display, would this be a example?


%client.bottomPrint(%message, %5, %1);

???


the %message, and %timeTo Display, would this be a example?


%client.bottomPrint(%message, %5, %1);

???


%client.bottomprint(%msg, 5, 1); will display whatever you set %msg to for 5 seconds without an ugly box around it.

%client.bottomprint(%msg, 5, 1); will display whatever you set %msg to for 5 seconds without an ugly box around it.

so i go

%client.bottomprint(%(my text here), 5, 1);

or

%client,bottomprint(%msg, 5, 1,'',"(my text here)";

?

Do: %client.bottomprint("my text here", 5, 1);

so i go

%client.bottomprint(%(my text here), 5, 1);

or

%client,bottomprint(%msg, 5, 1,'',"(my text here)";

?
you go and read some beginner tutorials on torquescript
there should be plenty in the codinghelp section and on other websites