Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tophat

Pages: [1]
1
General Discussion / Re: DX7+Blood effects+Veiled helm=SCARY AS HELL
« on: February 18, 2011, 07:49:13 am »
BECAUSE THEY KNOW THE THINGS YOU'VE DONE

2
General Discussion / DX7+Blood effects+Veiled helm=SCARY AS HELL
« on: February 18, 2011, 07:42:25 am »
visitors can't see pics , please register or login

THOSE EYES...

3
Suggestions Corner / A fun solution to idlers!
« on: February 16, 2011, 10:58:57 pm »
Instead of kicking them (with E, i mean. Not kicking them off of the server) just buy yourself a nice wooden stick for 2 gold and make it your idle basher!
If you have spare inventory, that is.

4
General Off Topic / Re: What are you listening to?
« on: February 16, 2011, 10:34:54 pm »

5
Beginner's Help and Guides / How do I turn off script errors?
« on: February 16, 2011, 10:31:28 pm »
Hey, I installed a sound pack and now I'm getting script errors. It's nothing serious, but could someone tell me how, if possible, one keep them from showing up in chat?

6
General Discussion / Re: I made a script!
« on: February 09, 2011, 05:11:42 pm »
Oh, thanks! I was wondering that.

7
General Discussion / Re: I made a script!
« on: February 09, 2011, 05:02:02 pm »
Oops, I forgot one thing.
It exits as soon as it's done, so this will make it stay open, although be it's pretty crude, so be warned.
Code: [Select]
# Hi forums!
a = raw_input("Gold or XP?")
if a == "xp":
    b = input("How much xp until next level?")
    c = input("How much xp do you have?")
    d = input("1000, 2000, 3000, 4000, or 5000 per round?")
    e =  ((b - c) / d)
    f = input (e)
if a == "gold":
    b = input("How much does it cost?")
    c = input("How much do you have?")
    d = input("50 per round, 100 per round, 150 per round, 200 per round, or 250 per round?")
    e =  ((b - c) / d)
    f = input (e)
EDIT: Forgot some stuff

8
General Discussion / Re: I made a script!
« on: February 09, 2011, 04:55:24 pm »
You need Python, so as soon as you get that installed copy the code into notepad and save it as a .py file. Then all you have to do is double click it.
You can download it here http://www.python.org/download/

9
General Discussion / I made a script!
« on: February 09, 2011, 04:42:05 pm »
Hello forums! I made a pretty basic script in python that tells you how much gold/xp you need to buy an item/level up based on your multiplier.
Code: [Select]
# Hi forums!
a = raw_input("Gold or XP?")
if a == "xp":
    b = input("How much xp until next level?")
    c = input("How much xp do you have?")
    d = input("1000, 2000, 3000, 4000, or 5000 per round?")
    print ((b - c) / d)
if a == "gold":
    b = input("How much does it cost?")
    c = input("How much do you have?")
    d = input("50 per round, 100 per round, 150 per round, 200 per round, or 250 per round?")
    print ((b - c) / d)

Pages: [1]