Quantcast
Channel: RaGEZONE - MMO Development Forums
Viewing all 25248 articles
Browse latest View live

Gm signs from Mu Origins by SChymare


Rings from Mu Origins By SChymare

$
0
0
Hi again everyone, now a give to you, 10 nice rings from mu origins.

I hope you liked. ;)
Here some pics.

In game


Download here
Password: ThxSChy


Credits: SChymare The SoulSensei

Sea cabal xor

【help】F6 Skins Learning drawings crash

$
0
0
logss
Quote:

000889.419| !!!! CJobUpdateSkins failed, code: 8000889.420| !!!! CAsyncApiWorker 0 job CJobUpdateSkins[1018014] 0D3AB1B8 failed000889.420| !!! CAsyncApiWorker 0 removed future job CJobUpdateCharData[1018014] 0BCE09F8000889.423| CAsyncApiWorker 0 job CJobUpdateSkins[1018014] 0D3AB1B8 failed000889.423| AddForcedJob CID:1018014 CJobAddLogInfo000889.423| LogInfo: peer00, r:DisconnectPeer API FAILED, CID:1018014 [sdfgsdfgdfg],
Disconnect from the server

Ask for help thanks

Looking For RF Developer

Please NET_MSG_BASE 1027

$
0
0
Please help me now confirm param.ini / CFG ip is correct or the same can not open the servo experts can help me answer?

[Request] Artemis Aftermath Files

Server attack please help me solve them

$
0
0
Server attack please help me solve them

1.They attacked the sever who I was standing near where his character was thrown out of the game

2. They flood into the gateway and agents cause them to be turned off

Please everyone please help me fix it completely

Server attack please help me solve them

$
0
0
Server attack please help me solve them

1.They attacked the sever who I was standing near where his character was thrown out of the game

2. They flood into the gateway and agents cause them to be turned off

Please everyone please help me fix it completely

issue with timermanager(i think?)

$
0
0
okay, so i was working on a fishing system for my maplesolaxia source.
basicly what ive done is a method that starts a timermanager event in maplecharacter.

whenever a player sits on a chair and that chair equels the fishing chair while player is in X map, that method gets called. when the player goes off a chair, the method gets called with a false boolean that then should stop the timer event. however i don't think it does. Whenever i drop an item (i suppose a timermanager event gets called to delete the item after X ms) i get an error. Could anyone help me out with where i'm going wrong and how i can fix this? I really want to get this system working, but i keep getting stuck.

useChairHandler method gets called with boolean true) :
Code:

if(c.getPlayer().getMapId() == 970020000 && itemId == 3011000 /*&& !c.getPlayer().isFishing*/){
            c.getPlayer().goFish(true);
        }

cancleChairHandler method gets called again with a false boolean this time:
Code:

if (id == -1) {
    c.getPlayer().goFish(false);
}

* there is more stuff in there that cancles the chair, but this is the only part that matters for my issue.

the method i made inside maplecharacter:
Code:

    public void goFish(boolean fish) {
                     
        TimerManager tMan = TimerManager.getInstance();
        final MapleCharacter chr = this;
        if(fish) {       
            //tMan.start();
            tMan.register(new Runnable() {
                @Override

                public void run() {                 
                    Fishing.doFishing(chr);
                }

            },5000, 5000 );
        }
        else {
            tMan.stop();
        }
    }

the error im getting after dropping an item:
Code:

Error for player ; Destiny on map ; 970020000 - account ; super861
All: 47 00 6F 9A 4B 44 04 07 00 00 00 01 00
Now: kevintjuh93 pwns
java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@292ea3d5 rejected from java.util.concurrent.ScheduledThreadPoolExecutor@35060a12[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1]
        at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor.reject(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor.schedule(Unknown Source)
        at server.TimerManager.schedule(TimerManager.java:95)
        at server.maps.MapleMap.spawnItemDrop(MapleMap.java:1226)
        at server.MapleInventoryManipulator.drop(MapleInventoryManipulator.java:519)
        at net.server.channel.handlers.ItemMoveHandler.handlePacket(ItemMoveHandler.java:51)
        at net.MapleServerHandler.messageReceived(MapleServerHandler.java:134)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$TailFilter.messageReceived(DefaultIoFilterChain.java:690)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:417)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:47)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:765)
        at org.apache.mina.filter.codec.ProtocolCodecFilter$ProtocolDecoderOutputImpl.flush(ProtocolCodecFilter.java:407)
        at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(ProtocolCodecFilter.java:236)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:417)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:47)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:765)
        at org.apache.mina.core.filterchain.IoFilterAdapter.messageReceived(IoFilterAdapter.java:109)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:417)
        at org.apache.mina.core.filterchain.DefaultIoFilterChain.fireMessageReceived(DefaultIoFilterChain.java:410)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.read(AbstractPollingIoProcessor.java:710)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(AbstractPollingIoProcessor.java:664)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(AbstractPollingIoProcessor.java:653)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor.access$600(AbstractPollingIoProcessor.java:67)
        at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run(AbstractPollingIoProcessor.java:1124)
        at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:64)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)

*i didn;t include my fishing java file since that is working fine. If needed i'll post that aswell.

Server.ini help!!!!!!!

$
0
0
Hi guys. I need u help. Anyone please send me u server.ini and httpd.CONF and db.CONF setup. Need view u setings for complete API. Please HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Reupload MRS addon

Organizing our servers with the(TW) clients that support Delia.

$
0
0
Anyone want to put your work into this?
Since a private server named VindictusUS is able to obtain the most suitable TW clients with the most updates patches to our servers files. We should put some works into it and let everyone enjoy most up-to-date servers available.

Here's the clients link for those who needs to start on their private server.

https://drive.google.com/file/d/0B40...pJTG4waHM/view
https://mega.nz/#!hGYCECgb!CCfz8bP6g...5OCtJkT0D9TyM4

The patcher.exe from their servers is not clean so when you installed the client just delete those unneeded files.

Alright let's us all start with this newest TW clients...

Vmware setup/network issues, please help, stupid problem.

$
0
0
So-- right off the bat when I load the vmware image, I notice that the network icons have a discrepancy between the icon in the system tray and the icon in the vmware workstation. It appears the network connection in my virtual desktop is not connecting to the internet, and is regarded as "local only"

The IP address 192.168.0.200 also does not show up on my router, so I can't forward any ports to it. Here are the network settings in vmware:



I'm not sure what I'm missing here lol.

Tried a fresh start at it and also running VMware as an administrator. No luck. Here's a screencap of what the network center looks like on a fresh install of the desktop image:



I've tested the network bridge settings and tried all of the adapters. I've also found that if I add a second network adapter and set it to automatic bridging, it works and I can connect to the internet within the virtual desktop, however I still cannot port forward to it, and I still cannot connect to the server.

Judging from this screenshot in the OP, it seems to me that the issue I'm having getting my virtual desktop to connect to the internet is the root of the problem. You can see that the network icon on the virtual desktop in this screenshot from the OP has the little green globe on it, however in my screenshot, it does not.



I feel as though I've emptied my options, I don't know what the hell to even try any more. I cannot get this thing to show up on my router, so therefore I cannot forward any ports. This is really frustrating.

Request Client for EP 11

$
0
0
anyone would share GG Client or client for EP 11 ..

Legend.mu use soucre igcn must not ?

$
0
0
Legend.mu use soucre igcn must not ?

[Release] PvP 8x8 95% Worked Server Login Now.! Devoloper

$
0
0
:ott:
!-PointBlank Offline By Devoloper Chrome-!
:ott:

+ Server 95% Worked - Worked Features 95%
- Auto Create Account
- PvP 8x8
- Bomb Mode
- DeathMatch Mode
- Eliminate Mode
- Shop
- All Titul
- Create Clan
- All Cupons
- AI Mode (Only 1x8)
-+--------------------------------------------------------------------------------+-
+ Not Worked
- Add Friend 5% (i will fixed)



+ Download's Server Files
- Login + Config https://drive.google.com/file/d/0B7z...tzLTdjYjA/view


+ Server Files VirusTotal Link
- https://www.virustotal.com/en/file/3...is/1498659249/


+Q.A
- Q. How To Login Server?
- A. Download Server lwsi_En.sif and connect to server hamachi network. (AutoCreate Account)
+Q.A
- Q. What client should I login to the game
- A. Server Client PBTAM,Brasil,PBCross 3.7
(Tested-2 Client PBTAM,Brasil,PBCross 3.7) (other-client-login-game-and-test-yourself)
!-Server-List-!
+ Server Hamachi * OPEN
- username : pbserver01
- password : veqo
+ Server 2 Hamachi * OPEN
- username : pbserver02
- password : veqo
+ Server 3 Hamachi * OPEN
- username: pbserver03
- password: veqo
+ DESCRIPTION
- Servers are open now and I am here till 12 pm

Client taking insanely long to do what its doing?

$
0
0
I Recently made a aura kingdom private server to play on with my friends but when i finished and started the client it started doing stuff to the files as it usually does but its taking Extremely long, Its been 4 hours and its not even gotten to 50%, is there a reason for it being so slow?

Emulator Dev Stream

$
0
0
Hi all.

Most of you may see the game as dying, but I still enjoy playing it and I truly believe that there are still players who would enjoy playing an actual decent server.

Therefore, I'm beginning work on an emulator, based on a previous project that was pretty far in development.

I am only here to inform everyone that I'll be streaming the development whenever I can, so if you want to, please feel free to drop by and watch :)

The link can be found here: Twitch

Thanks,
Wumbo (Baker)

What is wrong with clone equipment in Seledit

$
0
0
if i clone equipment. armor or weapon..:mellow:Skin equipment does not look in the game? /
Skin equipment is not visible in the game?
Sorry for my bad english :(
Viewing all 25248 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>