Jump to content

Recommended Posts

Posted (edited)

I want to share with you this updater I created from sources found on the internet...

This updater has been cleaned and runs now without any errors or warnings!!

Any question you can contact me with via private message or email me at: contact@l2vagrant.com

 

 

L2Updater Clean Ver1

 

L2Updater Clean Ver2

 

http://rotfg.co.uk/uploads/updater.png

 

https://www.virustotal.com/#/file/74c183e19b5b8516f50e1226f4a0d9fa50bb379ad9b8fdb0cc7eaa79bb9f4e86/detection     L2Updater Ver1 scan

https://www.virustotal.com/#/file/a90f050facb59201901a9087e0ed739b5fd2db736cfc0c12da4d9a23691e1e39/detection    Patch builder scan

 

https://www.virustotal.com/#/file/21d3e472706ff26e1a9d2680b5fda30c8b9efce3ba3ddb02428c25b620552b98/detection    L2Updater Ver2 scan

 

Website/Forum/C-Panel redirection buttons added...

Enjoy.

 

alphomse5928.png

 

Edited by dizzan
Added Version 2 of client updater
  • Like 3
  • Thanks 1
  • Upvote 3
Posted

If someone have a custom design and wants to add it to the updater contact me via private message or email and i will add it for you.

You can donate via paypal as much as you think it is right for this services.

Posted
1 hour ago, Designatix said:

Very nice work mate, Thanks for sharing.

Thank you. I will share more designs and add more futures to the updater.

  • Upvote 1
Posted
13 minutes ago, melron said:

not bad :) Gj

The most important thing is that the updater is virus free and runs with no errors...

Players need a clean updater and that's for sure.

Posted (edited)

Hi,
Seem it use Delphi and same source than I based mine of (I converted source from Delphi 7 to Rad studio 10.1)
you could try to change few options to make it much better here my suggestion :)

1 : Disable ''Transparent'' over black or any color that just ugly. (see next suggestion why)
https://i.imgur.com/thYodPe.png
2 : Enable GlassFrame (It allow PNG to have Alpha !)

https://i.imgur.com/urmBbeE.jpg
3 : Option button put it few pixel to left with some margin from the Close button (Mistake can easly happen)
4 : In Game Settings Add 2 Buttons for Apply and Close that weird to have clickable text only :)
5 : If you do use 1 & 2 in png add a shadow so it look prettier :D (Here that a personal view !)
6 : If you want to rock on every others launcher make a skin for each chronicle and trust me you will have feedback ;)

Now I have tiny question, do you plan to re-share fixed sources or accept helps ?
so we can help you making it even better than you did now :)
If you want to talk about over skype tell me and I pm you name over here :)

Edited by Jojo_
Posted

I use Rad studio 10.2 (Delphi) and the issue with png will be fixed on the next share..

The updater works smooth and it's virus free.

Gauges are switched to progress bar and soon i will have animated progress bar also.

0 warnings and 0 errors and the bzip archiver errors updated also

Give me your skype name so we can chat together :)

Cheers!

  • Upvote 1
Posted
2 hours ago, dizzan said:

Thank you. I will share more designs and add more futures to the updater.

Good to hear :) +1 and keep up the good work!

  • Like 1
Posted (edited)

This track makes me add some background music also to the updater....:P

 

 

 

Edited by dizzan
  • Upvote 1
Posted
3 hours ago, SillverShadow said:

Good working updater, helpful guy , answered all questions i had about it.

keep making it better !

I agree what an helpful person, I totally recommend him !
 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • You always find a way to lower the bar. Consistency matters. I admire your dedication to being completely unaware of how little you matter.     at least you are not entirely useless you can always serve as a bad example
    • hahahahahahahahahahahaha this says more about MaxCheaters than about me xD
    • I already finished my panel for change name and gender, anyway need restart, im used schema  $stmt = $conn->prepare("EXEC lin_ChangeCharacterName2 ?, ?, ?"); for change name... also for change gender i used if ($race == 5) // Kamael race ID; modify this value as per your database { $error = "Gender change is not allowed for Kamael race characters."; } else { $stmt = $conn->prepare(" UPDATE user_data SET gender = ?, face_index = 0, hair_shape_index = 0, hair_color_index = 0 WHERE char_id = ? AND account_name = ? "); Sorry no idea how to add cached update in myext64 about, not have any  solution for this yet compatible to myext64 code. This is my panel make in php http://177.73.143.43:8080/account/ Cool panel for me, without experience in any code. Without help from any people here 🙄
    • Базы данных от прямых источников!                                  Холодка                 Реги                 Депы                 Богатые физики                                  Много актуальных гео!                 Замена брака!                 Гарант+                                  Контакты                 ТГ - @yashkatsigun    
    • Don't listen to that idiot @Nightw0lf — he doesn't know or understand anything... he just talks nonsense. Here's the solution, just to prove that they're the useless ones giving you meaningless and useless answers.   function disableCharacter($charId){ $buf = pack("cVV", 0x14, $charId, 1); return $this->Send($buf); } function enableCharacter($charId, $accountId){ $buf = pack("cVV", 0x15, $charId, $accountId); return $this->Send($buf); } function kickCharacter($charId) { $buf = pack("cV", 0x05, $charId); $tmp = $this->Send($buf); sleep(2); return $tmp; } //-------------------------------------------------------------------------------- if ($func==7)//DESHABILITAR PERSONAJE { $char_id = $var1; $CACHED->kickCharacter($char_id); $respuesta = $CACHED->disableCharacter($char_id); RegistrarActividad("disableCharacter",$respuesta,GetCharNameByCharId($char_id)."(".$char_id.")",0,0,0,0); } else if ($func==8)//HABILITAR PERSONAJE { $char_id = $var1; $account_id = $var2; $CACHED->kickCharacter($char_id); $respuesta = $CACHED->enableCharacter($char_id,$account_id); RegistrarActividad("enableCharacter",$respuesta,GetCharNameByCharId($char_id)."(".$char_id.")",$account_id,0,0,0); } //-------------------------------------------------------------------------------- $CACHED->disableCharacter($char_id); $tabla = sqlsrv_query($conexion_lin2world, "UPDATE user_data SET xxxxxxxxxxxx WHERE char_id=".$char_id.""); $CACHED->enableCharacter($char_id,$account_id); Now just compare the stupidity said by that imbecile @Nightw0lf with the answer I gave you... Thanks to people like this, MaxCheaters is in the state it's in... They keep following useless people who are good for nothing 😉  
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock