Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Blade And Soul Emu release ( Atomix )

Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
If an application has been copied from the web, it is flagged by Windows as being a web application, even if it resides on the local computer. You can change that designation by changing the file properties, or you can use the element to grant the assembly full trust. As an alternative, you can use the UnsafeLoadFrom method to load a local assembly that the operating system has flagged as having been loaded from the web.
QHD65zF - Blade And Soul Emu release ( Atomix ) - RaGEZONE Forums

I was trying it run as administrator but It wasn't change anything and when I open property it not look like your img .

gserr - Blade And Soul Emu release ( Atomix ) - RaGEZONE Forums

Thank You.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
My D:\ is local disk not a network shared or nfs mounterd drive.

You can see icon of this drive is an hdd in my pc.
 
Last edited:
Newbie Spellweaver
Joined
Feb 23, 2015
Messages
10
Reaction score
0
i thinks its something related to world server you need to change server port to 10100.



it is mysql db settings.


Server port is on 10100 by default and i use Navicat.
 
Last edited:
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
Hi Bro DNC :

When I Using your 1st solution replace this line "newAssembly = Assembly.LoadFrom(System.IO.Path.GetFullPath(i)); //.LoadFile(System.IO.Path.GetFullPath(i));" , I has get an error when run GameServer.exe :

Code:
GameServerCommon LibrarySmartEngine Network[Info] Version Informations:
[Info] Initializing VirtualFileSystem...
[Info] Loading Configuration File...
[Info] Done reading configuration...
[Info]19029 item templates loaded.
[Info]2017 skill templates loaded.
[Info]50 levels loaded.
[Info]4854 effect templates loaded.
[Info]120 bagua set templates loaded.
[Info]6539 npc templates loaded.
[Info]119 npc stores loaded.
[Info]5239 spawns loaded.
[Info]68 campfire spawns loaded.
[Info]99 quests loaded.
[Info]14 relationships loaded.
[Info] Loading uncompiled scripts
[Info] Containing 60 Scripts
[Info] Loading compiled scripts....
[Error] System.IO.FileLoadException: Could not load file or assembly 'file:///D:
\bnsemu\Bin\Scripts\bin\Debug\BigInteger.dll' or one of its dependencies. Operat
ion is not supported. (Exception from HRESULT: 0x80131515)
File name: 'file:///D:\bnsemu\Bin\Scripts\bin\Debug\BigInteger.dll' ---> System.
NotSupportedException: An attempt was made to load an assembly from a network lo
cation which would have caused the assembly to be sandboxed in previous versions
 of the .NET Framework. This release of the .NET Framework does not enable CAS p
olicy by default, so this load may be dangerous. If this load is not intended to
 sandbox the assembly, please enable the loadFromRemoteSources switch. See http:
//go.microsoft.com/fwlink/?LinkId=155569 for more information.
   at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String cod
eBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark&
stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntro
[Info]94 portals loaded.


   at System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String code
Base, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& s
tackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntros
pection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName as
semblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMar
k& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIn
trospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadFrom(String assemblyFile, Ev
idence securityEvidence, Byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm,
Boolean forIntrospection, Boolean suppressSecurityChecks, StackCrawlMark& stackM
ark)
   at System.Reflection.Assembly.LoadFrom(String assemblyFile)
   at SagaBNS.GameServer.Scripting.ScriptManager.LoadScript(String path) in d:\b
nsemu\GameServer\Scripting\ScriptManager.cs:line 54




[Info] Totally 60 Scripts Added
[Info]74 map templates loaded.
[Info] Connecting account server at 127.0.0.1:12010
[Info] Login to account server successful
[Info] Connecting character server at 127.0.0.1:12012
[Info] Login to character server successful
[Info] Listening on port:10100
[Info] Accepting clients...

and I try using second solution replace with this line "newAssembly = Assembly.UnsafeLoadFrom(System.IO.Path.GetFullPath(i)); //.LoadFile(System.IO.Path.GetFullPath(i));" and I has an difference error :

Code:
GameServerCommon LibrarySmartEngine Network[Info] Version Informations:
[Info] Initializing VirtualFileSystem...
[Info] Loading Configuration File...
[Info] Done reading configuration...
[Info]19029 item templates loaded.
[Info]2017 skill templates loaded.
[Info]50 levels loaded.
[Info]4854 effect templates loaded.
[Info]120 bagua set templates loaded.
[Info]6539 npc templates loaded.
[Info]119 npc stores loaded.
[Info]5239 spawns loaded.
[Info]68 campfire spawns loaded.
[Info]99 quests loaded.
[Info]14 relationships loaded.
[Info] Loading uncompiled scripts
[Info] Containing 60 Scripts
[Info] Loading compiled scripts....
[Info] Loading ./Scripts\bin\Debug\BigInteger.dll, Containing 7 Scripts
[Info] Loading ./Scripts\bin\Debug\Common.dll, Containing 124 Scripts
[Info] Loading ./Scripts\bin\Debug\MySql.Data.dll, Containing 106 Scripts
[Info] Loading ./Scripts\bin\Debug\NLog.dll, Containing 107 Scripts
[Info] Loading ./Scripts\bin\Debug\PhotoShop.dll, Containing 24 Scripts
[Error] System.Reflection.ReflectionTypeLoadException: Unable to load one or mor
e of the requested types. Retrieve the LoaderExceptions property for more inform
ation.
   at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
   at System.Reflection.RuntimeModule.GetTypes()
   at SagaBNS.GameServer.Scripting.ScriptManager.LoadAssembly(Assembly newAssemb
ly) in d:\bnsemu\GameServer\Scripting\ScriptManager.cs:line 119
   at SagaBNS.GameServer.Scripting.ScriptManager.LoadScript(String path) in d:\b
nsemu\GameServer\Scripting\ScriptManager.cs:line 57
[Info]94 portals loaded.
[Info] Totally 428 Scripts Added
[Info]74 map templates loaded.
[Info] Connecting account server at 127.0.0.1:12010
[Info] Login to account server successful
[Info] Connecting character server at 127.0.0.1:12012
[Info] Login to character server successful
[Info] Listening on port:10100
[Info] Accepting clients...
 
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
Hi bro @DNC

I think my windows has problem . My PC Runing windows 8.1 Profressional and my Visual studio in my PC version 2013 Premium.

UAC in my PC alway disable.

Thanks for your support so much .
 
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
In folder Script/bin doesn't contain folder releases folder. Last time i was coppy folder Script to folder Bin .


Thanks bro.


Update : wow so surprised I have copy all file but not copy Script , I was create folder script but this server run successful not show any error . Thanks Bro DNC so much. Cheer.
 
  • Like
Reactions: DNC
Retired Developer
Joined
Jun 16, 2005
Messages
496
Reaction score
213
Lol... so... you betrayed atomix and stole their files? penis move...

It wont... it took atomix 2 years to get this far...


should i remembering you what you did with MY GAMECP ? before judge someone ? don't think i forget it :)


aslo if someone took 2 years for get this project be done like it is right now then why the project was sold ? over 2 k usd ?

so for sure someone a day will share it

u guy complain when server file got leaked? i guess no!! u guys think about the original author ?
 
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
Client:
updated bin folder:
config.xml ip 127.0.0.1:
Launcher:
Your path working but I don't understand Korean T_T How to change it to English ?
 

Attachments

You must be registered for see attachments list
CATMAGEDDON
Loyal Member
Joined
Aug 17, 2014
Messages
1,666
Reaction score
293
@DNC (dingus nut cracker i pressume) save me a lot of time,does this work?or should i cancel download?too much coding needed?(am not good but i can do some stuff)and system requirements to run client+server
thanks :3
 
Newbie Spellweaver
Joined
Apr 14, 2014
Messages
53
Reaction score
1
Either you do what lokireborn did to translate the client to english or download the bns atomix client which is alredy in english.
I was download BNS Automix in this thread by torrent :

This is the same with :

But when i create file start.bat to run client in server 127.0.0.1 it will download gameguard and kick out the game to website gameguard . How to run this with origin version of automix ? I was extract files share by ashlay but his client is Korean .

How to run automix client ?

Thank you.
 
Back
Top