is there anyone who can edit or any editor or easy guide how to add items on gameshop (x) ingame. i want to add some items on it. im using zteam client. season 6 episode 3 free release. i can pay if anyone want to help
↧
[Help] i need a help :( gameshop
↧
Hello:)
Hey guys
I am new here And saw that players post here any things about KalOnline.
Its my first post here today and I wanna ask, if any one can tell me if it is allowed to ask for repacks or not.
If it is, I wanna learn a bit to code or smth :)
I saw that TranX and Kaylanna(right name?) Post much :)
If TranX read my post here, I wanna tell you that Nation Kal Online was the best server which I played !
Can you make it again Online?
Or can you give me the chance or other players too,and relase your repack here?:)
Would be nice from you!:)
(if it´s allowed to Ask for a Repack^^)
Yurix
I am new here And saw that players post here any things about KalOnline.
Its my first post here today and I wanna ask, if any one can tell me if it is allowed to ask for repacks or not.
If it is, I wanna learn a bit to code or smth :)
I saw that TranX and Kaylanna(right name?) Post much :)
If TranX read my post here, I wanna tell you that Nation Kal Online was the best server which I played !
Can you make it again Online?
Or can you give me the chance or other players too,and relase your repack here?:)
Would be nice from you!:)
(if it´s allowed to Ask for a Repack^^)
Yurix
↧
↧
[Help] How to use this Adminpanel for taney destribution??
[IMG]<a target="_blank" href="http://imageshack.com/f/ey2MPonFp"></a>[/IMG]
https://imageshack.com/i/ey2MPonFp
please i need help how to log in into this Adminpanel for taney distribution :thumbup:
https://imageshack.com/i/ey2MPonFp
please i need help how to log in into this Adminpanel for taney distribution :thumbup:
↧
[Release] Chat :)
↧
How to make perfect models of weapons in the offline world?
:D:
please help: D
please help: D
↧
↧
Black Dragon Nest Bug
Recently, i have encountered a bug at the level that the boss need to be attacked 3 times with the cannon to deactivate his shield INSIDE Black Dragon nest:
Once the boss being attacked 1 time with the cannon, he became invisible and can not be attacked (but i am still taking his dmg, it is just like GM Invisble command on him)
May i know how to fix that, or at least it is the server files problem or client problems
Thx
Client and server i am using:
http://forum.ragezone.com/f853/7-cla...0-cap-1022667/
DB i am using:
http://forum.ragezone.com/f853/relea...server-979993/
(clean db of the above thread)
Once the boss being attacked 1 time with the cannon, he became invisible and can not be attacked (but i am still taking his dmg, it is just like GM Invisble command on him)
May i know how to fix that, or at least it is the server files problem or client problems
Thx
Client and server i am using:
http://forum.ragezone.com/f853/7-cla...0-cap-1022667/
DB i am using:
http://forum.ragezone.com/f853/relea...server-979993/
(clean db of the above thread)
↧
new character points and zen
hello all using MTT Season 2 1.02c , when creating new characters zen 0 , point 0 , i need default to every new character 300 level up point and 5milion zen , please help me
↧
[Help] Art Bugs
↧
[VB6]PacketSender
Guys i need to send to server port 6102 to get the client to login
any ideas how to do it
i got connect button and i want that my program will send this packet to the server when i click on it
this is my code for the button clientless
any ideas how to do it
i got connect button and i want that my program will send this packet to the server when i click on it
Code:
Private Sub clientless_Click()
Dim p as New Packet(&H6102)
p.WriteUInt8 (22)
p.WriteAscii (ID.Text)
p.WriteAscii (pw.Text)
p.WriteUInt16 (64)
Gateway.SendToServer (p)
End Sub
↧
↧
C# Ripping GTE Edit source
Hey, this emulator has some nice edits, but its closed sourced,
Could someone rip the source please?
It doesnt has like an encryption orsomthing
.NET Reflector didnt work for me tough :(
http://secretup.com/uploads/1NubEmu.rar?File=13
Thankyou :DDDDDDDDDDDDD
Could someone rip the source please?
It doesnt has like an encryption orsomthing
.NET Reflector didnt work for me tough :(
http://secretup.com/uploads/1NubEmu.rar?File=13
Thankyou :DDDDDDDDDDDDD
↧
PHP [HELP] PHP Array search function
Hello i got a problem, i have created costum array search function
the problem is function will ignore first item in array
if i try to find for example 'Router' everything works as expected but if i wan't to find 'App' the function will return false as value do not exist in array
http://easycaptures.com/fs/uploaded/874/4316690019.png
http://easycaptures.com/fs/uploaded/874/5374100107.png
full code
edit:
Anyway i fixed it for got to add loop break
http://easycaptures.com/fs/uploaded/874/9716920288.png
PHP Code:
function array_find($find,array $array,$return = ARRAY_FIND_RETURN_BOOL)
{
$result = false;
foreach($array as $index => $value)
{
if(is_array($value) == true)
{
$result = array_find($find,$value,$return);
if($result == false)
{
continue;
}
}
else
{
if($value == $find)
{
if($return == ARRAY_FIND_RETURN_BOOL)
{
$result = true;
}
elseif($return == ARRAY_FIND_RETURN_ARRAY)
{
$result = $array;
}
else
{
$result = $index;
}
break;
}
}
}
return $result;
}
PHP Code:
$testArray = array(
0 => array
(
'Name' => 'App',
'Class' => 'System\Application',
'Enabled' => 1
),
1 => array
(
'Name' => 'Router',
'Class' => 'System\Components\Router',
'Enabled' => 1
),
);
http://easycaptures.com/fs/uploaded/874/4316690019.png
http://easycaptures.com/fs/uploaded/874/5374100107.png
full code
PHP Code:
define('ARRAY_FIND_RETURN_INDEX', 2);
define('ARRAY_FIND_RETURN_ARRAY', 3);
define('ARRAY_FIND_RETURN_BOOL', 4);
function array_find($find,array $array,$return = ARRAY_FIND_RETURN_BOOL)
{
$result = false;
foreach($array as $index => $value)
{
if(is_array($value) == true)
{
$result = array_find($find,$value,$return);
if($result == false)
{
continue;
}
}
else
{
if($value == $find)
{
if($return == ARRAY_FIND_RETURN_BOOL)
{
$result = true;
}
elseif($return == ARRAY_FIND_RETURN_ARRAY)
{
$result = $array;
}
else
{
$result = $index;
}
break;
}
}
}
return $result;
}
$testArray = array(
0 => array
(
'Name' => 'App',
'Class' => 'System\Application',
'Enabled' => 1
),
1 => array
(
'Name' => 'Router',
'Class' => 'System\Components\Router',
'Enabled' => 1
),
);
echo '<b>array_find</b><br>';
echo 'Find value "Router" :: Mode ARRAY_FIND_RETURN_ARRAY<pre>'.var_export(array_find('Router',$testArray,ARRAY_FIND_RETURN_ARRAY),true).'</pre>';
echo 'Find value "Router" :: Mode ARRAY_FIND_RETURN_BOOL<pre>'.var_export(array_find('Router',$testArray,ARRAY_FIND_RETURN_BOOL),true).'</pre>';
echo 'Find value "Router" :: Mode ARRAY_FIND_RETURN_INDEX<pre>'.var_export(array_find('Router',$testArray,ARRAY_FIND_RETURN_INDEX),true).'</pre>';
echo '<b>Actual Array</b><br>';
echo '<pre>'.var_export($testArray,true).'</pre>';
Anyway i fixed it for got to add loop break
PHP Code:
if($result == false)
{
continue;
}
else
{
break;
}
↧
[Help] disconnected from the server mu s6ep3
anyone help me
its all ok now.
but when i open main.exe always disconnected from the server.
all configure in my ip.
dc.JPG
tnx-sorry this is my first time build mu server ^_^
its all ok now.
but when i open main.exe always disconnected from the server.
all configure in my ip.
dc.JPG
tnx-sorry this is my first time build mu server ^_^
↧
[help] k2.dll strife
Hi friends. Need help with it DLL. I must know how they generate password. I know that this function in this library. But i can't understand ASM :D
↧
↧
[HELP] Launcher error!!
000000.000| Input Devices enabled: Mouse, Keyboard
000000.148| VMEM As seen through DDRaw: -1576
000000.148| VMEM As seen through WMI: 0
000000.241| We have 4091 MB texture memory
000000.242| r3dFont: Creating Verdana 10pt
000000.254| r3dFont: Finished creating Verdana 10pt
my r3dlog.txt log
000000.254| r3dFont: Creating Tahoma 12pt
000000.258| r3dFont: Finished creating Tahoma 12pt
000000.258| r3dFont: Creating Tahoma 10pt
000000.260| r3dFont: Finished creating Tahoma 10pt
000000.260| r3dFont: Creating Tahoma 9pt
000000.262| r3dFont: Finished creating Tahoma 9pt
000000.770| Starting updater, v:1.0.0, cmd:
000000.772| Checking for new updater
000001.111| Checking for new updater - finished
000009.796| Checking for game update
000009.871| failed to get http://localhost/wz/wz.xml, http code 404
000009.871| FailUpdate: Failed to get current game build
000009.910| Exception! EResult=2
000009.922| CUpdater::Stop()
wz.xml
<p>
<d ver="1241646392" base="http://localhost/wz/data/wz4A020538"/>
</p>
plz help me!!
000000.148| VMEM As seen through DDRaw: -1576
000000.148| VMEM As seen through WMI: 0
000000.241| We have 4091 MB texture memory
000000.242| r3dFont: Creating Verdana 10pt
000000.254| r3dFont: Finished creating Verdana 10pt
my r3dlog.txt log
000000.254| r3dFont: Creating Tahoma 12pt
000000.258| r3dFont: Finished creating Tahoma 12pt
000000.258| r3dFont: Creating Tahoma 10pt
000000.260| r3dFont: Finished creating Tahoma 10pt
000000.260| r3dFont: Creating Tahoma 9pt
000000.262| r3dFont: Finished creating Tahoma 9pt
000000.770| Starting updater, v:1.0.0, cmd:
000000.772| Checking for new updater
000001.111| Checking for new updater - finished
000009.796| Checking for game update
000009.871| failed to get http://localhost/wz/wz.xml, http code 404
000009.871| FailUpdate: Failed to get current game build
000009.910| Exception! EResult=2
000009.922| CUpdater::Stop()
wz.xml
<p>
<d ver="1241646392" base="http://localhost/wz/data/wz4A020538"/>
</p>
plz help me!!
↧
lost due abnormal client status (0x00003)
Dragonica Connection to the server has been lost due abnormal client status (0x00003)
How can i fix it?
How can i fix it?
↧
I need a good source V62
like the title I need a good source of raw V62 you can share them with me?
if it has full party quest, the better
thank you
and I want to add items to the drop, the monster should do?
and if you can share me how to add a few small event it? thanks you :D
I also need a new way of custom items with banned story and photoshop if you can share me namely weapons and maps, monster
sorry for my english is quite bad
if it has full party quest, the better
thank you
and I want to add items to the drop, the monster should do?
and if you can share me how to add a few small event it? thanks you :D
I also need a new way of custom items with banned story and photoshop if you can share me namely weapons and maps, monster
sorry for my english is quite bad
↧
ExtaliaMS packet crypt
hi Rz,
i use mapleshark to sniff packet from Extalia but it's unreadable.
anyone know how they encrypt/ decrypt packet? change the origin AES or bypass some encryption/decryption
i use mapleshark to sniff packet from Extalia but it's unreadable.
anyone know how they encrypt/ decrypt packet? change the origin AES or bypass some encryption/decryption
↧
↧
[Help] Sword Fix hand for ep3
anyone how to fix swordsman this arms hand?
here fix will be help!
SS:
haha1231.JPG
Aiesha ran client ep3
Thanks you!
here fix will be help!
SS:
haha1231.JPG
Aiesha ran client ep3
Thanks you!
↧
who have the secrete Online client?
plz,share it。 thank you very much!
↧
[AD] MuLatinoPVP | S6 EP3 | 30x Exp | 30% Drop | No Reset | Grand Opening 04/10/2014
Grand Official Opening on Saturday October 4, 2014 at 16:00 hours -5GMT

MU LATINO PVP - SERVER FULL PVP [EXP 30x][DROP 30%][NO RESET]
We provide support in language:
INTRODUCTION:
Mu Latino PVP stems from the need to find a server without excess AFK, a server where everyone has the opportunity to become strong without the need to leave your computer on 24 hours a day. Discover here the true meaning of being the strongest, we are a low experience server (30x) and no reset (server without reset), what matters here is to have a better distribution of points, sets and optional weapons.
General information:
- Site Web: www.mulatinopvp.com/en/ or www.mulatinopvp.com/br/ or www.mulatinopvp.com/es/
- Facebook: http://www.facebook.com/mulatinopvp
- Versión: Season 6 Episode 3
- AntiHack: Mu Guard
- Rage Fighter: Unlocked at level 280
- Summoner: Unlocked at level 150
- Magic Gladiator: Unlocked at level 220
- Dark Lord: Unlocked at level 250
- Hard Drop - We have good experience in server slow
- Facebook: http://www.facebook.com/mulatinopvp
- Versión: Season 6 Episode 3
- AntiHack: Mu Guard
- Rage Fighter: Unlocked at level 280
- Summoner: Unlocked at level 150
- Magic Gladiator: Unlocked at level 220
- Dark Lord: Unlocked at level 250
- Hard Drop - We have good experience in server slow
SERVER INFORMATION:
- Normal experience: 30x
- Experience ML: 20x
- Drop: 30%
- Server: No Reset
- Maximum Normal Level: 400
- Maximum Master Level: 200
- Sale items: NOT
- Goblin Point: ON (Earn goblin point for time online, and redeem them for many items.)
- Healing Potion: x3
- Mana Potion: x3
- XShop: Basic PVP, no seals.
- Collect Rena: On
-
- Experience ML: 20x
- Drop: 30%
- Server: No Reset
- Maximum Normal Level: 400
- Maximum Master Level: 200
- Sale items: NOT
- Goblin Point: ON (Earn goblin point for time online, and redeem them for many items.)
- Healing Potion: x3
- Mana Potion: x3
- XShop: Basic PVP, no seals.
- Collect Rena: On
-
EVENTS:
- Castle Siege every Sunday.
- Blood Castle
- Devil Square
- Illusion Temple
- Castle Deep
- Golden Archer
- White Wizard
- Golden Invasion
- Crywolf
- Double Goar
- Loren Deep
- Dungeon Race
- Lottery Event
- PvP Last Stand
- Hunt & Kill
- Kill The GM
- The Gambler
- Fallen Gods
Wait no more, real server is stable acerca to begin.
Imagine an alliance of people who only speak Inglés, another who only speak Spanish alliance and another alliance who speaks Portuguese, struggling to be the best and the siege castle owner.
That would be great, invite your friends and acquaintances in this new adventure.
Additional Information.
Donate for credit: Paypal, Western Union, SMS. (donations are minimum 1 dollar to 100 Credits, and only sell basic items Such as pets, and seals do not sell items)
Vote for credits: You can vote for our server Also and earn free Credits.
Events for credits. Take part in our events for free credits, so all Have the opportunity to enjoy the xSHOP.
Gold subscription: On
30% extra experience.
Additional 5% drop jewel.
6% additional rate in chaos machine.
50% Discount helper.
10% additional drop.
For 7 days only 3 dollars, as is the incredible economic and affordable price for everyone.
- Blood Castle
- Devil Square
- Illusion Temple
- Castle Deep
- Golden Archer
- White Wizard
- Golden Invasion
- Crywolf
- Double Goar
- Loren Deep
- Dungeon Race
- Lottery Event
- PvP Last Stand
- Hunt & Kill
- Kill The GM
- The Gambler
- Fallen Gods
Wait no more, real server is stable acerca to begin.
Imagine an alliance of people who only speak Inglés, another who only speak Spanish alliance and another alliance who speaks Portuguese, struggling to be the best and the siege castle owner.
That would be great, invite your friends and acquaintances in this new adventure.
Additional Information.
Donate for credit: Paypal, Western Union, SMS. (donations are minimum 1 dollar to 100 Credits, and only sell basic items Such as pets, and seals do not sell items)
Vote for credits: You can vote for our server Also and earn free Credits.
Events for credits. Take part in our events for free credits, so all Have the opportunity to enjoy the xSHOP.
Gold subscription: On
30% extra experience.
Additional 5% drop jewel.
6% additional rate in chaos machine.
50% Discount helper.
10% additional drop.
For 7 days only 3 dollars, as is the incredible economic and affordable price for everyone.
↧