Alert after login(before picking char for new accounts)

is this such a thing?

i dont see it here


incase i wanna create new char and name it myself

instead of the auto create feature

is this thing
a phbot feature request?
or plugin request?
(dont know which section should i add this in…)

Use Plugin for create but the Name can already in Use

where
?

Use search function and dont be lazy…

1 Like

there is no such a thing…
i mean alerting upon logging in … before choosing…

There is nothing for that
As i wrote Use a Plugin for Creating a Char

that create’s random names
nvm forget it

@Ryan
kindly
add a feature in this section


to alert (PING & windows10 notifiction)
when it logs in … before choosing character … incase of a new account … that the player wanna manually create a char by adding char name & hight & skin & all the good little details…?

1 Like

LOL you can all define this and set a fixed Name
If you want Special Things you should take Time and learn Python. Otherwise accept the Basic function

didnt ask to be lectured
thx for ur time

1 Like

you can do something really simple like this, its not exactly the same notification but it would work. Your bot must be minimized for this to show up.

from phBot import *
    import QtBind

    pName = 'Connected'

    gui = QtBind.init(__name__,pName)

    def connected():
    	show_notification('Connected', 'You have been Connected')

    # Plugin loaded
    log("Plugin: "+pName+" successfully loaded")

this push notifiction on windows? does it also play windows ping sound?

update:

it doesn’t show here? works background? do i need to title it something?

i opened .txt
copied this & ended it up with .py

would this work?
sry im a noob on this stuff…

1 Like

no it does this…

notification

you can make it play a sound with this…

from phBot import *
import QtBind

pName = 'Connected'

gui = QtBind.init(__name__,pName)

def connected():
	show_notification('Connected', 'You have been Connected')
	play_wav('insert wav file path')

# Plugin loaded
log("Plugin: "+pName+" successfully loaded")

you’ve done something wrong it doesnt appear to have loaded. Try to create a copy of JellyDix, rename it to “Connected” open it in notepad, erase everything, paste my code in and save.

2 Likes

do i insert one?

also
like this ?

ya you got it

yes you need to insert a path to a wav file, if you dont have one just google it and download one

1 Like

can i change any MP3 file i got … to .wav ?

just google an online converter

1 Like

when i add a path … it fail to load


do i need to add space or something?

  1. Don’t use Notepad.
  2. You’re missing quotes around the path.
1 Like

what do i use?

yes now it works
with notepad…

thx