What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Cheap D3 Cd keys, not russian!

and1mixtape

New Member
Joined
May 30, 2012
Messages
290
Reaction score
1
Hello again!
Can u help me with some trusted sites, where I can buy D3 cd key? Not russian if it's possible!
Ty
 
it doesn't matter if its a Russian key, since its a global key system, you can use a Russian key and add it to your US bnet account without any problems.
 
russian keys can be used in eu server? ( but in russ language ) this no worry but i need know if i can use in EU

ty
 
This dutch website sells for 44,95 euros. If you don't speak dutch use google translate.
PC Diablo III - Yourgamezone

Bought 2 keys sofar and recieved the keys realy quick.
You can pay with paypall and will recieve a confirmation after payment.
Then it's just a matter of time until the owner sends the key to your mailbox.
 
The russian version linked above is 24 euro only!
 
RU key restrictions:
Only one - not possible to run client on different language except russian. But there is a way to solve it by editing process memory (non legit way).

RU key troubles:
Hard to find seller who accept PP.
Problems with understanding russians sellers sites.

You can attach key to any BNet account and play on 3 regions (NA/EU/Asia).
 
Last edited:
RU key restrictions:
Only one - not possible to run client on different language except russian. But there is a way to solve it by editing process memory (non legit way).

RU key troubles:
Hard to find seller who accept PP.
Problems with understanding russians sellers sites.

You can attach key to any BNet account and play on 3 regions (NA/EU/Asia).


russian cdkeys can use in European server? its 100 sure this?

thanks
 
There is no RU server(s)
All differents in EU/RU keys is russian ItemRule names of items + gold need to be recorded as [*золот*] and DB accept it.
 
Last edited:
It simple. Lets take any... realy any ItemRule.. OK, lets take default one:
Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Default Item Rules" useRoundedValues="true">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all magic+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>

      <!-- Pick up gold, at least in stacks of 100 -->
      <ItemRule itemName="Gold" stack="1" />
      <ItemRule itemName="*золот*" stack="1" />

      <!-- Health potions -->
      <ItemRule itemName="*Health Potion*" stack="1" />
    </Category>

    <Category ruleType="Keep">
      
      <ItemRule itemBaseType="Weapon" twoHanded="true" description="High DPS 2h Weapons">
        <StatRules>
          <!-- Magic Weapons should have at least 1200 DPS -->
          <Rule stat="DPS" minValue="1200" quality="Magic1" />
          <!-- Rare weapons should have at least 1100 considering they provide extra stats most of the time. -->
          <Rule stat="DPS" minValue="1100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Weapon" twoHanded="false" description="High DPS 1h Weapons">
        <StatRules>
          <Rule stat="DPS" minValue="1000" quality="Magic1" />
          <Rule stat="DPS" minValue="900" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="String of Ears" description="High DR% String of Ears">
        <StatRules>
          <!-- String of Ears should have at least 17% damage reduction. Any lower and its not worth a whole lot.-->
          <Rule stat="DamageReductionPhysicalPercent" minValue="17" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="Talisman of Aranoch" description="Talisman of Awesome Lowbieness" />

      <!-- Keep rares and legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Rare and better items!">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
    </Category>

    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
    
  </Categories>

</ItemRules>
Just look at line with "gold" rule and exacly on next one: <ItemRule itemName="*золот*" stack="1" /> Same as above but changed gold on *золот* and all.

Next look at record about keep "String of Ears" and "Talisman of Aranoch". Now we need to translate it. Go to Game Guide - Diablo III and search by item name. Then on (for example "String of Ears") we just change BNet site language to russian on lowe right corner of page (last euro language).
Next we see this page: Пояс из ушей - Diablo III on russian Just Copy+Paste russian name into ItemRule file.
As result we have record such like this:
Code:
      <ItemRule itemName="Пояс из ушей" description="High DR% String of Ears">
        <StatRules>
          <!-- String of Ears should have at least 17% damage reduction. Any lower and its not worth a whole lot.-->
          <Rule stat="DamageReductionPhysicalPercent" minValue="17" />
        </StatRules>
      </ItemRule>
Repeat last three steps for any named rule inn file and we done.

Other words is all you must to change is kept in itemName="???" parameter. All other may be kept as is.

Thats all.

ATENTION! ItemRule file must be edited and saved in UTF-8 to correctly save russian names.
 
Last edited:
Back
Top