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

has any 1 got any in date game servers and login server

$
0
0
im looking for server files logging server and game server all mine ive got just have app crash guessing they have expired if any 1 has got anything that work plz let me know thanks very much:D:

Infestation ParanoidMMO

$
0
0


Hello People,
We are ready to go with our server in a public Alpha phase and like you to join us and report any bugs in our forum.


Website: www.cggaming.net
TS3:ts.cggaming.net
Download Launcher
Download Full Client



Meet the Team:
Head Coder: iTzEnDLyHsHD
Server Hoster + Coder: Justinlampy
Director of Development personel: Mr.Kingpin
Mapper: Macuseless
Mapper: ScottY
Web Manager: YouKnowZMe




Features:
- Clan Creation
- Group Creation
- Swim System
- Custom Maps
- Balanced Loot
- PvP Action
- Leaderboards
- Custom Menu
- 24/7 online!
- Private Servers
- New Guns
- New Armor
All new stuff will be added in our Patch Notes


Maps:
Colorado (PvE, PvP)
Cliffside (PvP)
SkyScraper City (PvP)


How to Report Players:
- ingame: /report <name>
- report them in our forum!


Interested? How to get Registered:
Download the Launcher
Click on Register
Register a account
Ready To Play!

We hope you enjoy your stay with us,
If you have any problems let it know on our forums or email to support@cggaming.net

Please Help...So close

$
0
0
When we try and start our server it hangs at this point.....



Any help would be greatly appreciated.

[L2Off] ➨ L2 Gangstarr 7x ✸ OBT IN 7 DAYS ✸

$
0
0


We are proud to announce our new L2Gangstarr Lineage 2 Server







#Interlude C6


#Exp/Sp 7x


#Retaillike = also with retail events


#No custom


#No game affecting donations


#L2Off Server files


#Best hardware and network


#Epic bosses spawntime reduced to 8h


BETA PHASE: 01.02.14-25-02.14




GRAND OPENING: 01.03.2014



For more informations check out “features” on navibar @ http://l2gangstarr.com





____________________________


L2 Gangstarr Team

New Project !!!

$
0
0
Hi Guys! I'm making a new project in habbostyle but the same as gta! I'll pay all! The emulator is finished But I need an help coding last commands Anyone who want to help me contact me on skype: haboshotel !!! Thank's

Help adding map gates

$
0
0
I have been trying to make my own gates in my fiesta private server using odin files. I have tried troubleshooting it and tried finding info and/or guides to how to do it. I know the basics, like where to go in the npc.txt. I copy a gate code already made and change it to what i want but all that seems to happen is i make the gate appear in the game but it does nothing. Can someone please help me understand the code. Thank You

Evony[urgent]

$
0
0
Hello everyone, anyone know to create a priv server "EVONY".

Please mail me on skype : djaloshi_legend if not works try djaloshi_legend

I wanna open it,i found the Daizee but Later i got confused how to do it.

Or inbox me back :3

WarZ Database log clear. / repair.

$
0
0
Quote:

GO
ALTER DATABASE WarZ SET RECOVERY SIMPLE WITH NO_WAIT
DBCC SHRINKFILE(WarZ_log)
ALTER DATABASE WarZ SET RECOVERY FULL WITH NO_WAIT
GO

WarZ logs deleted.
good games! :8:

[Release] Auto Fishing

$
0
0
MapleCharacter.java
PHP Code:

    private transient ScheduledFuture<?fishTimer;
    private 
int fishTasking 0;
    private final 
int bait 4000166;
    public final 
int fishingMap 123456789;
    public final 
int fishingChair 3010018;

    public final 
void fishingTimer(int time) {
        
getClient().getSession().write(MaplePacketCreator.sendHint("Start Fishing...\r\n□□□□□□□□□□"200200));
        
fishTimer MapTimer.getInstance().register(new Runnable() {
            public 
void run() {
                if (
fishTasking 10) {
                    
fishTasking++;
                    
String gage "";
                    for (
int i 0<= fishTaskingi++) {
                        
gage += "■";
                    }
                    for (
int i 9fishTaskingi--) {
                        
gage += "□";
                    }
                    
getClient().getSession().write(MaplePacketCreator.sendHint("Fishing...\r\n" gage200200));
                } else {
                    
fishTasking 0;
                    if (
getItemQuantity(baitfalse) == 0) {
                        
cancelFishing();
                        return;
                    }
                    
int[][] items = {{399474520}, {399474220}};

                    
int chance = (int) Math.random() * 100;
                    
int count 0;
                    for (
int[] item items) {
                        if (
item[1] >= chance) {
                            
count++;
                        }
                    }
                    
int[] goods = new int[count];
                    
count 0;
                    for (
int[] item items) {
                        if (
item[1] >= chance) {
                            
goods[count] = item[0];
                            
count++;
                        }
                    }
                    
int chance2 = (int) Math.random() * goods.length;
                    if (
goods.length == 0) {
                        
getClient().getSession().write(MaplePacketCreator.sendHint("Fail"200200));
                    } else {
                        if (
getInventory(GameConstants.getInventoryType(goods[chance2])).getNextFreeSlot() > -1) {
                            
getClient().getSession().write(MaplePacketCreator.sendHint("Check your inventory"200200));
                        } else {
                            
MapleInventoryManipulator.addById(getClient(), goods[chance2], (short1null);
                            
getClient().getSession().write(MaplePacketCreator.sendHint("You got #b" MapleItemInformationProvider.getInstance().getItemInformation(goods[chance2]).name "#k"200200));
                        }
                    }
                    
MapleInventoryManipulator.addById(getClient(), bait, (short) -1null);
                }
            }
        }, 
time 10time 10);
    }


    public final 
void cancelFishing() {
        if (
fishTimer != null) {
            if (
getItemQuantity(baitfalse) == 0) {
                
getClient().getSession().write(MaplePacketCreator.sendHint("You need more bait"200200));
            } else {
                
getClient().getSession().write(MaplePacketCreator.sendHint("Stop Fishing"200200));
            }
            
fishTimer.cancel(false);
            
fishTimer null;
        }
    }

PlayerHandler.java
PHP Code:

    public static final void UseChair(final int itemId, final MapleClient c, final MapleCharacter chr) {
        if (
chr == null || chr.getMap() == null) {
            return;
        }
        final 
Item toUse chr.getInventory(MapleInventoryType.SETUP).findById(itemId);
        if (
toUse == null) {
            
chr.getCheatTracker().registerOffense(CheatingOffense.USING_UNAVAILABLE_ITEMInteger.toString(itemId));
            return;
        }
        
//add
        
if (itemId == chr.fishingChair && chr.getMapId() == chr.fishingMap) {
            
chr.fishingTimer(15000);
        }

        
chr.setChair(itemId);
        
chr.getMap().broadcastMessage(chrMaplePacketCreator.showChair(chr.getId(), itemId), false);
        
c.getSession().write(MaplePacketCreator.enableActions());
    }

    public static final 
void CancelChair(final short id, final MapleClient c, final MapleCharacter chr) {

//add
        
if(chr.getMapId() == chr.fishingMap){
            
chr.cancelFishing();
    }

        if (
id == -1) { // Cancel Chair
            
chr.setChair(0);
            
c.getSession().write(MaplePacketCreator.cancelChair(-1));
            if (
chr.getMap() != null) {
                
chr.getMap().broadcastMessage(chrMaplePacketCreator.showChair(chr.getId(), 0), false);
            }
        } else { 
// Use In-Map Chair
            
chr.setChair(id);
            
c.getSession().write(MaplePacketCreator.cancelChair(id));
        }
    } 

The War Z Server Hack - SQL SERVER!

$
0
0
Hi, everyone :D
You server sql user name; sa change to .....
and server 1433 port change to ...


My Server;
sa ---> sasaT
1433 ---> 1439
youserverip,1439 connecting ...

Good Games :)

[Release] Auto Fishing

$
0
0
MapleCharacter.java
PHP Code:

    private transient ScheduledFuture<?fishTimer;
    private 
int fishTasking 0;
    private final 
int bait 4000166;
    public final 
int fishingMap 123456789;
    public final 
int fishingChair 3010018;

    public final 
void fishingTimer(int time) {
        
getClient().getSession().write(MaplePacketCreator.sendHint("Start Fishing...\r\n□□□□□□□□□□"200200));
        
fishTimer MapTimer.getInstance().register(new Runnable() {
            public 
void run() {
                if (
fishTasking 10) {
                    
fishTasking++;
                    
String gage "";
                    for (
int i 0<= fishTaskingi++) {
                        
gage += "■";
                    }
                    for (
int i 9fishTaskingi--) {
                        
gage += "□";
                    }
                    
getClient().getSession().write(MaplePacketCreator.sendHint("Fishing...\r\n" gage200200));
                } else {
                    
fishTasking 0;
                    if (
getItemQuantity(baitfalse) == 0) {
                        
cancelFishing();
                        return;
                    }
                    
int[][] items = {{399474520}, {399474220}};

                    
int chance = (int) Math.random() * 100;
                    
int count 0;
                    for (
int[] item items) {
                        if (
item[1] >= chance) {
                            
count++;
                        }
                    }
                    
int[] goods = new int[count];
                    
count 0;
                    for (
int[] item items) {
                        if (
item[1] >= chance) {
                            
goods[count] = item[0];
                            
count++;
                        }
                    }
                    
int chance2 = (int) Math.random() * goods.length;
                    if (
goods.length == 0) {
                        
getClient().getSession().write(MaplePacketCreator.sendHint("Fail"200200));
                    } else {
                        if (
getInventory(GameConstants.getInventoryType(goods[chance2])).getNextFreeSlot() > -1) {
                            
getClient().getSession().write(MaplePacketCreator.sendHint("Check your inventory"200200));
                        } else {
                            
MapleInventoryManipulator.addById(getClient(), goods[chance2], (short1null);
                            
getClient().getSession().write(MaplePacketCreator.sendHint("You got #b" MapleItemInformationProvider.getInstance().getItemInformation(goods[chance2]).name "#k"200200));
                        }
                    }
                    
MapleInventoryManipulator.addById(getClient(), bait, (short) -1null);
                }
            }
        }, 
time 10time 10);
    }


    public final 
void cancelFishing() {
        if (
fishTimer != null) {
            if (
getItemQuantity(baitfalse) == 0) {
                
getClient().getSession().write(MaplePacketCreator.sendHint("You need more bait"200200));
            } else {
                
getClient().getSession().write(MaplePacketCreator.sendHint("Stop Fishing"200200));
            }
            
fishTimer.cancel(false);
            
fishTimer null;
        }
    }

PlayerHandler.java
PHP Code:

    public static final void UseChair(final int itemId, final MapleClient c, final MapleCharacter chr) {
        if (
chr == null || chr.getMap() == null) {
            return;
        }
        final 
Item toUse chr.getInventory(MapleInventoryType.SETUP).findById(itemId);
        if (
toUse == null) {
            
chr.getCheatTracker().registerOffense(CheatingOffense.USING_UNAVAILABLE_ITEMInteger.toString(itemId));
            return;
        }
        
//add
        
if (itemId == chr.fishingChair && chr.getMapId() == chr.fishingMap) {
            
chr.fishingTimer(15000);
        }

        
chr.setChair(itemId);
        
chr.getMap().broadcastMessage(chrMaplePacketCreator.showChair(chr.getId(), itemId), false);
        
c.getSession().write(MaplePacketCreator.enableActions());
    }

    public static final 
void CancelChair(final short id, final MapleClient c, final MapleCharacter chr) {

//add
        
if(chr.getMapId() == chr.fishingMap){
            
chr.cancelFishing();
    }

        if (
id == -1) { // Cancel Chair
            
chr.setChair(0);
            
c.getSession().write(MaplePacketCreator.cancelChair(-1));
            if (
chr.getMap() != null) {
                
chr.getMap().broadcastMessage(chrMaplePacketCreator.showChair(chr.getId(), 0), false);
            }
        } else { 
// Use In-Map Chair
            
chr.setChair(id);
            
c.getSession().write(MaplePacketCreator.cancelChair(id));
        }
    } 

[Request] Lanuage script

$
0
0
Hey!

I'm requesting a language script so the php sites will be availiable to translate to 2 different languages, so i can have people from 2 different languages


Please answer quickly!
/ Flowy :)

Does any one have SH and Dark Village Res Files? working?

[Help] Help Friends Skill Bar Bug Come

$
0
0
hello, friends of ragezone i have a problem whit skill bar, i have a players old thant no have problems but the new user have problem, how can do it. some fix?:$:

Help :3

$
0
0


FALIED AUTO DOWNLOAD :((((((((((( HELP

Need a working ep3 cash server

$
0
0
The cash server i currently have is wizatek 3.0 but the item mall gives me system error when i open up the item mall ingame. Any fix for this? or a working cash server? Thanks.

Please help me

Any one want to make a Emulator read for more info

$
0
0
Hello, Im am going to start working on a emulator
And i need people to help
I own a vps so we can host servers of that
My skype is : OxRevenge

This will be a english emulator

[Discussion] Older server files

$
0
0
I would like to discuss if there is a demand for older server files than the Third Awakening ones. I for myself are a huge fan of Episode III but nobody shared them since servers owned them.

Right now I am only owning two types of Episode II files in which one of them the old Chaos Arena exists. Both of them are kind of old school but there is nothing challenging like forgotten temple b2f or so in them.
Furthermore I stumbled upon Episode VII files around the time EP 8 files were very new to the community. Those might be intresting if people don't like the addition of BM 3 and the 190 cap and are completly official.

I do understand that people are not willing to share but I think they should all rethink if they want to keep files which are unreleased by themselves.

Estsoft is on a hunt for all the work people put into the released EP 8 server files. If these files mentioned, got leaked how I found the EP 7 files they should blame themselves and let people do whatever they want with the files.
You can clearly see it in YouTube where they claimed lots of videos due to the fact that those are private server related and that is really getting on my nerves.


This may be a little off topic so let me ask right away if you would be interested in seeing older files? If yes would it also motivate you to maybe share your older files?

Gold Bug tutorial

$
0
0
Good evening,

hi to all developers...
may i ask if you have any patch which can apply to Ran Ph also? specially when it comes to GOLD BUG ISSUE?



for your kind assistance


Thank you,
Amidamaruu
Viewing all 14533 articles
Browse latest View live