| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 37 online users. » 0 Member(s) | 36 Guest(s) Bing
|
| Latest Threads |
Last Chaos Server Sale
Forum: The Black Market (Buy, Sell, Trade)
Last Post: XWrongX2
01-26-2026, 11:07 PM
» Replies: 3
» Views: 611
|
All in One Exporter
Forum: Tools
Last Post: Kain88
01-25-2026, 07:04 AM
» Replies: 4
» Views: 431
|
HELP! ReZasCashServer It ...
Forum: Ep4 Support
Last Post: Kain88
01-24-2026, 03:24 PM
» Replies: 2
» Views: 165
|
Hi, does anyone know the ...
Forum: Help
Last Post: Desarija
01-21-2026, 11:29 AM
» Replies: 1
» Views: 113
|
LastChaos Nemesis
Forum: Server Advertising
Last Post: Desarija
01-20-2026, 04:06 PM
» Replies: 3
» Views: 236
|
Looking for EP4 Guidance
Forum: General Discussion
Last Post: xHypnosiaa
01-19-2026, 08:33 AM
» Replies: 1
» Views: 171
|
We're in need of creative...
Forum: Project Recruitment
Last Post: RGT
01-16-2026, 12:48 AM
» Replies: 0
» Views: 119
|
Last Chaos build deployme...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-08-2026, 11:14 AM
» Replies: 0
» Views: 75
|
Last Chaos global server ...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-07-2026, 07:01 PM
» Replies: 0
» Views: 33
|
EP-2/EP-3 Mixed files
Forum: Archived General Server Releases
Last Post: TeKnodE
01-06-2026, 09:53 PM
» Replies: 1
» Views: 297
|
|
|
| [Tool] PosInfo |
|
Posted by: fabi202cool - 02-13-2012, 07:19 PM - Forum: Tools
- Replies (8)
|
 |
Today i want to share my old tool, it shows the current X, Y and Z coordinates plus the current rotation.
It is very useful for add new NPCs...
Pic:
Source:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author: fabi202cool
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
#include
#include
#include
#include
#include
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("", 138, 177, 192, 124)
GUISetBkColor(0x000000)
$Group1 = GUICtrlCreateGroup("", 8, 0, 121, 169)
$Label4 = GUICtrlCreateLabel("X:", 24, 19, 14, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Label5 = GUICtrlCreateLabel("Y:", 24, 52, 14, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Label6 = GUICtrlCreateLabel("Z:", 24, 84, 14, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Input1 = GUICtrlCreateInput("", 40, 16, 73, 21)
$Input2 = GUICtrlCreateInput("", 40, 48, 73, 21)
$Input3 = GUICtrlCreateInput("", 40, 80, 73, 21)
$Label1 = GUICtrlCreateLabel("Rotation:", 24, 120, 47, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Input4 = GUICtrlCreateInput("", 24, 136, 89, 21)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
WinSetOnTop("PosInfo", "", 1)
$Base = 0x105F2B18
$offset_xpos=0x000FC4A8
$offset_ypos=0x000fc44C
$offset_zpos=0x000fc450
$offset_rot=0x000fc4d8
$posxOld = 0
$posyOld = 0
$poszOld = 0
$rotationOld = 0
If Not ProcessExists("Nksp.exe") Then
MsgBox(48, "Error", "Bitte zuerst LastChaos starten !")
Exit
EndIf
$Window = "[CLASS:Nksp]"
$Handle = _MemoryOpen(WinGetProcess($Window))
$Address = _MemoryRead($Base, $Handle)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
$posy = _MemoryRead($Address + $offset_ypos, $Handle, "float")
$posx = _MemoryRead($Address + $offset_xpos, $Handle, "float")
$posz = _MemoryRead($Address + $offset_zpos, $Handle, "float")
$rotation = _MemoryRead($Address + $offset_rot, $Handle, "float")
$coordx = Round($posx, 4)
$coordy = Round($posy, 4)
$coordz = Round($posz, 4)
$coordrot = Round($rotation, 4)
If $posxOld <> $coordx Then
GUICtrlSetData($Input1, $coordx)
EndIf
If $posyOld <> $coordy Then
GUICtrlSetData($Input2, $coordy)
EndIf
If $poszOld <> $coordz Then
GUICtrlSetData($Input3, $coordz)
EndIf
If $rotationOld <> $coordrot Then
GUICtrlSetData($Input4, $coordrot)
EndIf
$posxOld = $coordx
$posyOld = $coordy
$poszOld = $coordz
$rotationOld = $coordrot
Sleep(10)
WEnd
Download: 2
|
|
|
| Because there is no General Section [C#] Programs Get Pratical! |
|
Posted by: illusionist - 02-13-2012, 04:18 AM - Forum: Coders Talk
- No Replies
|
 |
This is a simple and funny application that i just thought up and decided to write its in C# it took like 10 seconds but its a nice fun approch for people who want to learn C#.
How it Works:
Start Application loads its data from rsp.u which is a basic UTF8 Encoding Text Document can be made with notepad....
Lines are sperated with the " comma character.
After application loads it sleeps the main thread so that the application does not hog CPU power (Central Processing Unit)
Sleep is exactly like it sounds tells the application that area is no longer needed put it on hold for x amount of milli seconds example
System.Threading.Thread.Sleep(1000);
System is the Assembly or .NET Package that contains Threading which in return contains many other functions.
System is part of mscorelib.dll the core of the .NET framework
The input from this application is taken by assiging variables type of string which is an array of Characters like a,b,c,d,e ect..
string input = Console.In.ReadLine();
This tells the program to assign input the value the user enters
The application is on hold until input is detected.
yes means you want the application to tell you a crappy pickup line to make you feel better.
no will single a emotional response from the application.
Source will be attached so you can explore with your own hands although to compile you will need visual C# 2008 or 2010 google should be able to tell you about these.
Other than that just have fun code does not need to be scary think of it as theaching a computer how to do something it could not do before.
|
|
|
| [C++] Pointers |
|
Posted by: Wizatek - 02-12-2012, 09:07 PM - Forum: Coders Talk
- Replies (3)
|
 |
Hi,
Im still a little vague in when to use pointers.
I have a c# background and those kind of things all get managed by the framework.
I know how a pointer works, and what it is.
But i dont understand exactly yet when its best to use a pointer and when its best to just use a value type ?
I have been reading about it, but it didnt made me any smarter
|
|
|
| [C#]Changing opening files in C# |
|
Posted by: Kenpachi - 02-12-2012, 06:53 PM - Forum: Coders Talk
- Replies (3)
|
 |
I have gotten this far but now a little lost.
string Chosen_File = "";
openFD.InitialDirectory = "C:";
openFD.Title = "Open a Text File";
openFD.FileName = "";
How do I change the .txt opening file to a .bin or other file?
|
|
|
| [Release] 1-165 monsters |
|
Posted by: Paramount - 02-12-2012, 05:02 PM - Forum: Server Side
- No Replies
|
 |
1-165 monsters
About:
In this pack are located all the monsters from ep2 to ep1
Credits:
-Me
-Thank Wizatek for his tools
2
|
|
|
| [Tutorial]Links to tutorials |
|
Posted by: someone - 02-12-2012, 03:41 PM - Forum: Coders Talk
- Replies (7)
|
 |
Here are some links to various languages tutorials(You dont need to learn all of them, just chose what you like):
==============================Web Development==============================
HTML
2
Tools Win32:2, Dreamweaver
Tools Linux:Geany, Bluefish, Amaya, SeaMonkey etc
CSS
2
Tools Win32:2, Dreamweaver
Tools Linux:Geany, Bluefish, Amaya, SeaMonkey etc
PHP
2
Tools Win32:2, Dreamweaver
Tools Linux:Geany, Bluefish, Amaya, SeaMonkey etc
Javascript
2
Tools Win32:2, Dreamweaver
Tools Linux:Geany, Bluefish, Amaya, SeaMonkey etc
AJAX
2
==============================Compiled Languages==============================
C/C++
C: 2
C++: 2
Tools Win32:2, 2, 2, Borland C++, Turbo C
Tools Linux:Geany, CodeBlocks, Kwrite, gedit, emacs
C#
2
Tools Win32:2
Tools Linux:Mono
Java
2
Tools Win32: Eclipse, Netbeans, Notepad++
Tools Linux:Eclipse, Netbeans
Visual Basic
Old VB: 2
.Net VB: 2
Tools Win32: Visual Basic
==============================Scripting Languages==============================
Perl
2
Tools Win32:Notepad++
Tools Linux:Genie, gedit, kwrite
Python
2
Tools Win32:Notepad++
Tools Linux:Genie, gedit, kwrite
Haskell
2
Tools Win32:Notepad++
Tools Linux:Genie, gedit, kwrite
==============================Other Usefull Stuff==============================
XML
2
2
Tools Win32:Notepad++, Eclipse(Has a guy version), Netbeans, Visual Studio
Tools Linux:Genie, gedit, kwrite, Eclipse(Has a guy version), Netbeans
ASM
To learn Assembly I suggestThis Book:
Read this 16bit Edition:
2
On linux AT&T sintax:
2
Linux NASM(same as MASM):
2
Hooking Interrupts(used to hook your app to Bios, DOS, Linux Kernel, etc):
2
2 (int 21h)
2 (int 80h)
2 (int 80h)
2
Tools Win32:2, RadASM(good Asm IDE), OllyDBG(for debugging asm)
Tools Linux: Any text editor, 2, GDB(Good Linux Debugger, AT&T sintax), GCC
A very good Tutorial(All languages even those that are not posted in this thread):
2
Feel free to look over this Cheat sheet too:
2
If you want to add/remove a link please Reply into this Thread
|
|
|
|