Screen shot 2011-05-06 at 8.39.21 PM

BugCraft’s Soldat Map Maker

BugCraft's Soldat Map Maker

So… ¡too much time without write here!

I’ve been coding something that always was in my head, make an map editor for a game and make it web-based, the first try was the PHP clases for WoW. I’ve played this game for years, Soldat is a Windows game that is very simple but very addictive.

Soldat game

0×1 – The goal

Make a map editor web-based with HTML5, CSS3, jQuery (JavaScript), SVG. Currently is a simple polygon creator, but that’s the key because the maps for soldat are composed by polygons, so with SVG we can render in our web browser the map and with jQuery edit them.

Due to standard of CSS problems currently only works with Firefox 4 & Google Chrome.

- Online Demo

0×2 – The engine

The base is fully base with jQuery and SVG, I use this jQuery code for make the polygons that

$(function() {
 $('#SoldatEngine').svg({onLoad: drawInitial});
});

function drawInitial(svg) {
 var g = svg.group({id: "Polygon"+Math.floor(Math.random()*11)});
 var i=0;
 for (i=0;i<=10;i++)
 {
 var Rand = Math.floor(Math.random()*1000);
 svg.polygon(g,[[Rand,150],[Rand+150,150],[Rand+100,0]],{fill: '#ccc', stroke: '#000', strokeWidth: 1, class: "Polygon", id: "P"+Math.floor(Math.random()*101)});
 }
}

Stay for more updates!

BugCraft’s WarTool (Yes, another post ._ .)

I don’t know exactly why but “Mythic” is publishing patchs every 3/4 days of WarHamme Online.

So I’ve made a little change at BugCraft’s tool , now it’s more easy update the tool because it download from Google Code the lists of offsets.
http://php-wow.googlecode.com/svn/trunk/WaR/BugCraftsOffsets.ini

And about the new feature that help you to fly around the world, I know that the is a problem, sometimes when you activate it the mouse disappears , try to don’t click anything when you press F8 to activate it.

Thank you to all people thaat use this free and non-comercial app, remember to use it ethically!

- Download sourcecode

BugCraft’s Tool new updates!

Yayh! Another update for this tool, I added the possibility for fly around the world without collision (Fly + Ninja), with this feature you’ll can go where you want!
Outdated:
- Download Sourcecode
Working patch:
- Download Sourcecode

	HotKeySet("{F1}","PlayerScale")
	HotKeySet("{F2}","PlayerZPosition")
	HotKeySet("{F3}","PlayerXPosition")
	HotKeySet("{F4}","PlayerYPosition")
	HotKeySet("{F5}","Speedhack")
	HotKeySet("{F6}","SuperJump")
	HotKeySet("{F7}","Fly")
	HotKeySet("{F8}","Ninja")
	HotKeySet("{F9}","Transparency")
	HotKeySet("{F10}","CameraZ")
	HotKeySet("{F11}","CameraDist")

After the Nogg-Aholic Conference

There have been days that I didn’t wrote anything, that’s because I returned to work after the holidays and this week have been really awesome for me!

There are a lot of people in internet that have spoken about the conference, this is the most awesome thing for me!!!
If you didn’t see the conference, here is the full video, The conference starts at 12:00 m/s
and at the finish of the video there is no audio :| I’ll upload the entire video that I recorded with my personal camera this week.

Here is some photos that my friends made during the conference:

And the presentation that I used:

http://prezi.com/fvtufwtiklf7/nogg-aholic/

Well there is not much to say, thanks to the Campus Party  organization for give me this oportunity, thanks to the aw3a team because they are an inspiration for me and thanks to the SecurityByDefault team because they are awesome people.

And absolutly THANKS TO THE NOGG-AHOLIC TEAM AND ALL MEMBERS OF THIS GROUP THAT MAKES ME HAPPY SINCE THE 2005 YEAR!

and finally thanks to all who enjoyed the conference!!!

[C#] BugCraft’s StarCraft II updated for lastest patch

Updated! ;D

- Download sourcecode