Jump to content

xTurinx

Members
  • Posts

    13
  • Joined

  • Last visited

About xTurinx

  • Birthday 07/29/1991

Profile Information

  • Gender
    Male
  • Location
    Germany

xTurinx's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. The development is currently focused on general implementation like packets and new game mechanics. The PvE content is very far from beeing completed. Your possibilities are waiting for a developer who wants to work on it or doing it for yourself. I guess the second possibility should be your choice because it is possible, that the skyfire developers are currently much more interessted in patch 6.X because TrinityCore is supporting this version.  I give you also a well intentioned advice. Your both questions use partly english words but your grammar looks like german. Maybe you should try google translate for your next message  best regards turin
  2. I know this is no web application but it is hopefully very usefull for people who wants to implement item icons with relation to their item entry in a web application project. Â Requirements: - ruby - bash/sh - wget #!/usr/bin/ruby require 'net/http' for i in 1..150000 url = URI.parse("http://wowhead.com/item=#{i}") req = Net::HTTP::Get.new(url.to_s) res = Net::HTTP.start(url.host, url.port) {|http| http.request(req) } line = res.body.split("n") for itr in 0..line.length if line[itr] != nil && line[itr] != '' && line[itr]["image_src"] part = line[itr].split(';') img = part[part.length - 1].split('"')[0] puts "Item: #{i} - Icon: #{img}" `cd icons && wget http://wow.zamimg.com/images/wow/icons/large/#{img}` `echo "INSERT INTO item_icon (item, icon) VALUES (#{i}, '#{img}')" >> dump.sql` end end end
  3. Same error on extracting vmaps on ubuntu 14.04
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.