d2jsp
Log InRegister
d2jsp Forums > Off-Topic > General Chat > Guild Chat & Recruiting > _| "sng Team" - Guildchat |_
Prev1226227228229230259Next
Add Reply New Topic New Poll
Member
Posts: 13,156
Joined: Jul 14 2008
Gold: 0.11
Feb 6 2010 06:16am
Quote (TheBe @ Feb 6 2010 01:14pm)
Yeah I think I installed it just like normally. Maybe you should try that


keke ima try it later
Member
Posts: 25,580
Joined: May 20 2006
Gold: 843.00
Feb 6 2010 06:33am
Quote (Fookass @ 6 Feb 2010 13:11)
64-bit here too hm... When I wanna start it it says "this program has a known comptibality issue" (directly transelater) and when I click run it says I need the CD...lol

did you just install it like normal? maybe I gotta reinstall

Full install.
Compatibility mode: Windows XP SP2.
Run as administrator.

You need Patch 1.12 to play without the CD. Log on Battle.net to patch it.

Follow the 1.12 patch instructions.

Mandatory files to copy into Diablo II folder: D2xMusic.mpq, D2xVideo.mpq.

This post was edited by Eywa on Feb 6 2010 06:34am
Member
Posts: 13,156
Joined: Jul 14 2008
Gold: 0.11
Feb 6 2010 06:52am
Quote (Eywa @ Feb 6 2010 01:33pm)
Full install.
Compatibility mode: Windows XP SP2.
Run as administrator.

You need Patch 1.12 to play without the CD. Log on Battle.net to patch it.

Follow the 1.12 patch instructions.

Mandatory files to copy into Diablo II folder: D2xMusic.mpq, D2xVideo.mpq.


Lol I right clicked on icon and did Run as administrator.. then it worked like a charm (haven't dl'd patch yet though). I'm so bad at computers despite all my hours in front of it.... Thanks a lot :) Btw did you know that you bought a 15 ed monarch from me in november 2008? :D

This post was edited by Fookass on Feb 6 2010 06:53am
Member
Posts: 25,580
Joined: May 20 2006
Gold: 843.00
Feb 6 2010 07:24am
1. november 2008 14:55:02 Sent -10.00 (990.00 -> 980.00) to Fookass (46.69 -> 56.69) 10/15 4 sox Monarch

Eywa knows.
Member
Posts: 19,733
Joined: Sep 3 2007
Gold: 3,475.00
Feb 6 2010 09:25am
Quote (Fookass @ 6 Feb 2010 08:52)
Lol I right clicked on icon and did Run as administrator.. then it worked like a charm (haven't dl'd patch yet though). I'm so bad at computers despite all my hours in front of it.... Thanks a lot :) Btw did you know that you bought a 15 ed monarch from me in november 2008? :D


me too man, me too
Member
Posts: 8,130
Joined: Sep 1 2008
Gold: 27.00
Warn: 10%
Feb 6 2010 11:17am
Quote (Atroce @ Feb 6 2010 02:46am)
Did you clear your bnetchache?


How would I know if I cleared it?
Member
Posts: 23,709
Joined: Apr 18 2008
Gold: 36.20
Feb 6 2010 11:29am
Quote (CompanyOfThree @ 6 Feb 2010 18:17)
How would I know if I cleared it?


Look for a file called "bncache.dat" in your Diablo 2 folder and delete it.
Member
Posts: 8,130
Joined: Sep 1 2008
Gold: 27.00
Warn: 10%
Feb 6 2010 11:59am
Quote (Atroce @ Feb 6 2010 12:29pm)
Look for a file called "bncache.dat" in your Diablo 2 folder and delete it.


Still doesn't work :(
I'm just gonna call home and get the CD keys and reinstall. Thanks for the help though guys
Member
Posts: 28,769
Joined: Apr 22 2008
Gold: 351.01
Feb 6 2010 12:07pm
Naj/Shai I'll pay back tomorrow. :)
Member
Posts: 9,197
Joined: Jan 24 2009
Gold: 4,767.60
Feb 6 2010 12:09pm
Quote (CompanyOfThree @ Feb 6 2010 12:59pm)
Still doesn't work :(
I'm just gonna call home and get the CD keys and reinstall. Thanks for the help though guys


=/ I lost a character because this same problem last year, but it was only a 800 fg paladin so nn
I think there is no error in my code now
Only 4 points off and I'm 70% sure the dictionary values at the top are correct. Someone mind theory crafting what's wrong? IMO it's diablo's natural rounding down.

Code
#!/usr/bin/env python

# Dictionaries for character stats
vitlife = {'amazon':3, 'assassin':3, 'barbarian':4, 'druid':2, 'necromancer':2, 'paladin':3, 'sorceress':2}
lvlife = {'amazon':2, 'assassin':2, 'barbarian':2, 'druid':1.5, 'necromancer':1.5, 'paladin':2, 'sorceress':1}
slife = {'amazon':50, 'assassin':50, 'barbarian':55, 'druid':55, 'necromancer':45, 'paladin':55, 'sorceress':40}
svitality = {'amazon':20, 'assassin':20, 'barbarian':25, 'druid':25, 'necromancer':15, 'paladin':25, 'sorceress':10}


#charclass = character classes, case sensitive
charclass = raw_input('Character class: ')
charclass = charclass.lower()

#Setting character level
level = input('Character level? ')
#Setting all the input variables
vitality = 0
vita = input('Base vitality without items: ')
vitality = vita - svitality[charclass]
itemvitality = input('Vitality from items: ')
item_life_per_level = input('Life/level from items? ')
#Setting a BO level variable
bolvl = input('BO level: ')
bo = 0
if bolvl:
bo = (bolvl * 3 + 32)
#Transformed states variables
werewolf = 0
werebear = 0
lyc = 0

ww = raw_input('Werewolf? ')
if ww == 'yes':
werewolf = 0.25
lyc = input('Lycanthropy level? ')

wb = raw_input('Werebear? ')
if wb == 'yes':
werebear = 0.50
lyc = input('Lycanthropy level? ')
lycan = 0
if lyc:
lycan = (lyc * 5 + 15)

#Bird quest
bird = input('How many golden bird quests have you completed? ') * 20
#Percentage of +% life from items
itempercent = input('+% Life from items? ')
#+ xx to life items
itemlife = input('+ X to life from items ')
#Oak sage variable

oak = 0

sage = input('Oak sage level ')

if sage:

oak = (sage * 5 + 25)

#Life boosters
total_percent = (itempercent + werebear + werewolf + lycan + bo + oak)/100.00

#Boostable life)
elife = slife[charclass] + (lvlife[charclass] *level) + itemlife +(vitality * vitlife[charclass]) + bird
#Total life
lifetot = elife * (1 + total_percent) + (itemvitality * vitlife[charclass]) + (item_life_per_level* level)
print lifetot


Quote (Aube @ Feb 6 2010 01:07pm)
Naj/Shai I'll pay back tomorrow. :)


Want a loan to help pay them back ?_?


edit: Nvm, it's 4 points off for my assassin......40 off for my paladin O.O
So my error must lie in a percentage

This post was edited by Scaryghoul on Feb 6 2010 12:32pm
Go Back To Guild Chat & Recruiting Topic List
Prev1226227228229230259Next
Add Reply New Topic New Poll