Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

Еда

Only working scripts
Post Reply
stamp
Posts: 1
Joined: 11.03.2012 11:49

Еда

Post by stamp »

Подгоните кто нибудь обычный скрипт что бы чар кушал.(стики)
nah nah
Developer
Developer
Posts: 414
Joined: 13.07.2011 11:23
Contact:

Re: Еда

Post by nah nah »

Code: Select all

from datetime import datetime as dt
from time import sleep as wait

food = 0x1234 #type of food

def main():
    msg = 'simply full'
    now_ = dt.now()
    while InJournalBetweenTimes(msg, now_, dt.now()) < 0 and not Dead():
        UseType(food, -1)
        wait(1)        

if __name__ == '__main__':
    main()
Post Reply