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

[Help] Error with HabboExtreme

$
0
0
Hi everyone

I am using HabboExtreme and I get this error on registration

Field 'position' doesn't have a default value

Dylan

Error with ButterStorm

$
0
0
Hello everyone

the ButterStorm have an error in your UserDataFactory.cs I wonder if someone can help me.

exception:
Code:

TokenID: 0Invalid Dario bug duing user login: System.IndexOutOfRangeException: Index was outside the bounds of the array.
  at Butterfly.HabboHotel.GameClients.GameClient.tryLogin(String AuthTicket)

UserDataFactory:
Code:

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using Butterfly.HabboHotel.Items;
using Butterfly.HabboHotel.Pets;
using Butterfly.HabboHotel.Rooms;
using Butterfly.HabboHotel.Users.Inventory;
using Butterfly.HabboHotel.Users.Messenger;
using Butterfly.HabboHotel.Users.Subscriptions;
using ButterStorm;
using Butterfly.HabboHotel.Users.Authenticator;
using Butterfly.HabboHotel.Users.Relationships;
using Butterfly.Messages;
using HabboEvents;


namespace Butterfly.HabboHotel.Users.UserDataManagement
{
    class UserDataFactory
    {
        internal static UserData GetUserData(string sessionTicket, string ip, out byte errorCode, out bool newUI)
        {
            DataRow dUserInfo;

            //DataTable dAchievements;
            DataTable dFavouriteRooms;
            DataTable dIgnores;
            //DataTable dTags;
            DataTable dSubscriptions;
            //DataTable dBadges;
            DataTable dEffects;
            DataTable dFriends;
            DataTable dRequests;
            //DataTable dQuests;
            DataTable dGroups;
            DataTable dRelations;

            UInt32 userID;
            newUI = false;
            using (var dbClient = ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
            {
                if (ButterflyEnvironment.useSSO)
                {
                    dbClient.setQuery("SELECT users.* " +
                                        "FROM users " +
                                        "RIGHT JOIN user_tickets " +
                                        "ON user_tickets.userid = users.id " +
                                        "WHERE user_tickets.sessionticket = @sso " +
                                        "AND ipaddress = @iPaddress ");
                }
                else
                {
                    dbClient.setQuery("SELECT users.*, user_tickets.betaEnabled " +
                    "FROM users " +
                    "RIGHT JOIN user_tickets " +
                    "ON user_tickets.userid = users.id " +
                    "WHERE user_tickets.sessionticket = @sso ");
                }

                dbClient.addParameter("sso", sessionTicket);
                dbClient.addParameter("ipaddress", ip);
                dUserInfo = dbClient.getRow();


                if (dUserInfo == null)
                {
                    errorCode = 1;
                    return null;
                    //Logging.LogException("No user found. Debug data: [" + sessionTicket + "], [" + ip + "]");
                    //throw new UserDataNotFoundException(string.Format("No user found with ip {0} and sso {1}. Use SSO: {2} ", ip, sessionTicket, ButterflyEnvironment.useSSO.ToString()));
                }
                newUI = (string)dUserInfo["betaEnabled"] == "1" ? true : false;
                userID = Convert.ToUInt32(dUserInfo["id"]);
                var userName = (string)dUserInfo["username"];

                if (ButterflyEnvironment.GetGame().GetClientManager().GetClientByUserID(userID) != null)
                {
                    try
                    {
                        //Envio un paquete ping a la otra conexion, no tiene real sentido pero refresco el estado y por el código de sendmessage se mostraria en consola si hubiese error.
                        var PingMessage = new ServerMessage(Outgoing.Ping);
                        ButterflyEnvironment.GetGame().GetClientManager().GetClientByUserID(userID).SendMessage(PingMessage);
                        errorCode = 2;
                        return null;
                    }
                    catch (Exception e)
                    {
                        ButterflyEnvironment.GetGame().GetClientManager().GetClientByUserID(userID).Disconnect();
                    }
                }



                var creditsTimestamp = (string)dUserInfo["lastdailycredits"];
                var todayTimestamp = DateTime.Today.ToString("MM/dd");
                if (creditsTimestamp != todayTimestamp)
                {
                    //dbClient.runFastQuery("UPDATE users SET credits = credits + 3000, daily_respect_points = 3, lastdailycredits = '" + todayTimestamp + "' WHERE id = " + userID);
                    dbClient.runFastQuery("UPDATE users SET lastdailycredits = '" + todayTimestamp + "' WHERE id = " + userID);
                    dUserInfo["credits"] = (int)dUserInfo["credits"] + 3000;
                    dUserInfo["daily_respect_points"] = 3;
                }

                //dbClient.setQuery("SELECT * FROM user_achievement WHERE userid = " + userID);
                //dAchievements = dbClient.getTable();

                dbClient.setQuery("SELECT room_id FROM user_favorites WHERE user_id = " + userID);
                dFavouriteRooms = dbClient.getTable();

                dbClient.setQuery("SELECT ignore_id FROM user_ignores WHERE user_id = " + userID);
                dIgnores = dbClient.getTable();

                //dbClient.setQuery("SELECT tag FROM user_tags WHERE user_id = " + userID);
                //dTags = dbClient.getTable();

                dbClient.setQuery("SELECT * FROM user_subscriptions WHERE user_id = " + userID);
                dSubscriptions = dbClient.getTable();

                //dbClient.setQuery("SELECT * FROM user_badges WHERE user_id = " + userID);
                //dBadges = dbClient.getTable();

                dbClient.setQuery("SELECT * FROM user_effects WHERE user_id =  " + userID + " GROUP by effect_id");
                dEffects = dbClient.getTable();

                dbClient.setQuery("SELECT users.id,users.username,users.motto,users.look,users.last_online " +
                                        "FROM users " +
                                        "JOIN messenger_friendships " +
                                        "ON users.id = messenger_friendships.sender " +
                                        "WHERE messenger_friendships.receiver = " + userID + " " +
                                        "UNION ALL " +
                                        "SELECT users.id,users.username,users.motto,users.look,users.last_online " +
                                        "FROM users " +
                                        "JOIN messenger_friendships " +
                                        "ON users.id = messenger_friendships.receiver " +
                                        "WHERE messenger_friendships.sender = " + userID + " LIMIT 500");
                dFriends = dbClient.getTable();

                dbClient.setQuery("SELECT messenger_requests.sender,messenger_requests.receiver,users.username " +
                                        "FROM users " +
                                        "JOIN messenger_requests " +
                                        "ON users.id = messenger_requests.sender " +
                                        "WHERE messenger_requests.receiver = " + userID + " LIMIT 150");
                dRequests = dbClient.getTable();

                //dbClient.setQuery("SELECT * FROM user_quests WHERE user_id = " + userID + "");
                //dQuests = dbClient.getTable();

                dbClient.setQuery("SELECT groupid FROM groups_users WHERE userid = " + userID);
                dGroups = dbClient.getTable();

                /**
                if (dbClient.dbType == Database_Manager.Database.DatabaseType.MySQL)
                    dbClient.runFastQuery("REPLACE INTO user_online VALUES (" + userID + ")");
                else
                    dbClient.runFastQuery("IF NOT EXISTS (SELECT userid FROM user_online WHERE userid = " + userID + ") " +
                                            "INSERT INTO user_online VALUES (" + userID + ")");
                **/

                dbClient.setQuery("SELECT member_id, relation_type FROM user_relationships WHERE user_id = " + userID);
                dRelations = dbClient.getTable();
            }
           
            //Dictionary<string, UserAchievement> achievements = new Dictionary<string, UserAchievement>();
            //string achievementGroup;
            //int achievementLevel;
            //int achievementProgress;
            //foreach (DataRow dRow in dAchievements.Rows)
            //{
            //    achievementGroup = (string)dRow["group"];
            //    achievementLevel = (int)dRow["level"];
            //    achievementProgress = (int)dRow["progress"];
            //
            //    UserAchievement achievement = new UserAchievement(achievementGroup, achievementLevel, achievementProgress);
            //    achievements.Add(achievementGroup, achievement);
            //}

            var favouritedRooms = new List<uint>();
            uint favoritedRoomID;
            foreach (DataRow dRow in dFavouriteRooms.Rows)
            {
                favoritedRoomID = Convert.ToUInt32(dRow["room_id"]);
                favouritedRooms.Add(favoritedRoomID);
            }


            var ignores = new List<uint>();
            uint ignoredUserID;
            foreach (DataRow dRow in dIgnores.Rows)
            {
                ignoredUserID = Convert.ToUInt32(dRow["ignore_id"]);
                ignores.Add(ignoredUserID);
            }

            //List<string> tags = new List<string>();
            //string tag;
            //foreach (DataRow dRow in dTags.Rows)
            //{
            //    tag = (string)dRow["tag"];
            //    tags.Add(tag);
            //}

            var subscriptions = new Dictionary<string, Subscription>();
            string subscriptionID;
            int expireTimestamp;
            foreach (DataRow dRow in dSubscriptions.Rows)
            {
                subscriptionID = (string)dRow["subscription_id"];
                expireTimestamp = (int)dRow["timestamp_expire"];

                subscriptions.Add(subscriptionID, new Subscription(subscriptionID, expireTimestamp));
            }

            //List<Badge> badges = new List<Badge>();
            //string badgeID;
            //int slotID;
            //foreach (DataRow dRow in dBadges.Rows)
            //{
            //    badgeID = (string)dRow["badge_id"];
            //    slotID = (int)dRow["badge_slot"];
            //    badges.Add(new Badge(badgeID, slotID));
            //}

            var effects = new List<AvatarEffect>();
            int effectID;
            int duration;
            bool isActivated;
            double activatedTimeStamp;
            int count;
            foreach (DataRow dRow in dEffects.Rows)
            {
                effectID = (int)dRow["effect_id"];
                duration = (int)dRow["total_duration"];
                isActivated = ButterflyEnvironment.EnumToBool((string)dRow["is_activated"]);
                activatedTimeStamp = (double)dRow["activated_stamp"];
                count = (int)dRow["effect_count"];

                effects.Add(new AvatarEffect(effectID, duration, isActivated, activatedTimeStamp, count));
            }


            var friends = new Dictionary<uint, MessengerBuddy>();
            var username = (string)dUserInfo["username"];
            UInt32 friendID;
            string friendName;
            string friendLook;
            string friendMotto;
            string friendLastOnline;
            foreach (DataRow dRow in dFriends.Rows)
            {
                friendID = Convert.ToUInt32(dRow["id"]);
                friendName = (string)dRow["username"];
                friendLook = (string)dRow["look"];
                friendMotto = (string)dRow["motto"];
                friendLastOnline = (string)dRow["last_online"];


                if (friendID == userID)
                    continue;

                var isVIP = false;
                using (var dbClient = ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
                {
                    dbClient.setQuery("SELECT COUNT(user_id) FROM `user_subscriptions` WHERE user_id = '" + friendID + "' AND subscription_id = 'habbo_vip' AND timestamp_expire >= '" + ButterflyEnvironment.GetUnixTimestamp() + "'");
                    if (dbClient.getInteger() > 0)
                        isVIP = true;
                }

                if (!friends.ContainsKey(friendID))
                    friends.Add(friendID, new MessengerBuddy(friendID, friendName, friendLook, friendMotto, isVIP));
            }

            var requests = new Dictionary<uint, MessengerRequest>();
            uint receiverID;
            uint senderID;
            string requestUsername;
            foreach (DataRow dRow in dRequests.Rows)
            {
                receiverID = Convert.ToUInt32(dRow["sender"]);
                senderID = Convert.ToUInt32(dRow["receiver"]);

                requestUsername = (string)dRow["username"];

                if (receiverID != userID)
                {
                    if (!requests.ContainsKey(receiverID))
                        requests.Add(receiverID, new MessengerRequest(userID, receiverID, requestUsername));
                }
                else
                {
                    if (!requests.ContainsKey(senderID))
                        requests.Add(senderID, new MessengerRequest(userID, senderID, requestUsername));
                }
            }

            //Dictionary<uint, int> quests = new Dictionary<uint, int>();
            //uint questId;
            //int progress;
            //foreach (DataRow dRow in dQuests.Rows)
            //{
            //    questId = Convert.ToUInt32(dRow["quest_id"]);
            //    progress = (int)dRow["progress"];
            //    quests.Add(questId, progress);
            //}

            var mygroups = (from DataRow dRow in dGroups.Rows select Convert.ToInt32(dRow["groupid"])).ToList();

            uint memberid;
            int relationtype;
            var myrelations = new List<Relationship>();
            foreach (DataRow dRow in dRelations.Rows)
            {
                memberid = Convert.ToUInt32(dRow["member_id"]);
                relationtype = (int)dRow["relation_type"];
                myrelations.Add(new Relationship(memberid, relationtype));
            }

            //Hashtable songs = new Hashtable();

            var user = HabboFactory.GenerateHabbo(dUserInfo);

            dUserInfo = null;
            //dAchievements = null;
            dFavouriteRooms = null;
            dIgnores = null;
            //dTags = null;
            dSubscriptions = null;
            //dBadges = null;
            dEffects = null;
            dFriends = null;
            dRequests = null;
            dGroups = null;
            dRelations = null;

            errorCode = 0;
            return new UserData(userID/*, achievements*/, favouritedRooms, ignores/*, tags*/, subscriptions/*, badges*/, effects, friends, requests/*, quests*//*, songs*/, mygroups, myrelations, user);
        }

        internal static UserData GetUserData(int UserId)
        {
            DataRow dUserInfo;
            DataTable dGroups;
            DataTable dRelations;

            UInt32 userID;

            using (var dbClient = ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
            {
                dbClient.setQuery("SELECT users.* FROM users WHERE users.id = @id");
                dbClient.addParameter("id", UserId);
                dUserInfo = dbClient.getRow();

                if (dUserInfo == null)
                {
                    return null;
                }

                userID = Convert.ToUInt32(dUserInfo["id"]);
                if (ButterflyEnvironment.GetGame().GetClientManager().GetClientByUserID(userID) != null)
                {
                    return null;
                }

                dbClient.setQuery("SELECT groupid FROM groups_users WHERE userid = " + userID);
                dGroups = dbClient.getTable();

                dbClient.setQuery("SELECT member_id, relation_type FROM user_relationships WHERE user_id = " + userID);
                dRelations = dbClient.getTable();
            }

            //Dictionary<string, UserAchievement> achievements = new Dictionary<string, UserAchievement>();
            var favouritedRooms = new List<uint>();
            var ignores = new List<uint>();
            //List<string> tags = new List<string>();
            var subscriptions = new Dictionary<string, Subscription>();
            //List<Badge> badges = new List<Badge>();
            var inventory = new List<UserItem>();
            var effects = new List<AvatarEffect>();
            var friends = new Dictionary<uint, MessengerBuddy>();
            var username = (string)dUserInfo["username"];
            var requests = new Dictionary<uint, MessengerRequest>();
            var rooms = new List<RoomData>();
            var pets = new Dictionary<uint, Pet>();
            //Dictionary<uint, int> quests = new Dictionary<uint, int>();
            //Hashtable songs = new Hashtable();

            var mygroups = (from DataRow dRow in dGroups.Rows select Convert.ToInt32(dRow["groupid"])).ToList();

            uint memberid;
            int relationtype;
            var myrelations = new List<Relationship>();
            foreach (DataRow dRow in dRelations.Rows)
            {
                memberid = Convert.ToUInt32(dRow["member_id"]);
                relationtype = (int)dRow["relation_type"];
                myrelations.Add(new Relationship(memberid, relationtype));
            }

            var user = HabboFactory.GenerateHabbo(dUserInfo);
            dUserInfo = null;
            dGroups = null;
            dRelations = null;

            return new UserData(userID/*, achievements*/, favouritedRooms, ignores/*, tags*/, subscriptions/*, badges*/, effects, friends, requests/*, quests*//*, songs*/, mygroups, myrelations, user);
        }
    }
}

thanks. :sleep:

[Help] Ex702

$
0
0
Ex702
its not work in my pc but in my other pc its work

windos 8.1

i fixed all dll
and i install all programs for open the main

the main He appears and disappears

- - - Updated - - -

plzzzzz help

[Help] about Black Rogue exp rate

$
0
0
hey


from few weeks i use Black Rogue files cap 110


its all is ok but some problem with pick pet not work and exp rate


i use brpatch but not work and try more and more but nothing change


can someone help me with this problem

2222.PNG111.PNG
Attached Images

[Request] 3d max Plugin Elu export Gunz

$
0
0
What are the plugin to download?

What is needed to create items for gunz in 3d max?

[Help] My Game is Have Lag

$
0
0
my game is have lag i need any fixes in this Problem
Example:
Server Files Without Bug
Any Program
Any Apps
any thing to fixes this Problem he is in old time Was is Nice Please Fixes

Moderator Application - Gaming Hotspot!

$
0
0
Real name: Benjamin D. (Prefer Ben)
Age: 15
Date of Birth: 12/1/1999
Location: United Kingdom (England)
Contact Information:Jamthatruns@hotmail.co.uk
(Other contact information can be provided if needed)
Languages: English and some French however not fluent but still learning.

Section I am applying for:
The section I am applying for is the 'Gaming Hotspot!' section.
Gaming Hotspot!

Why I am applying for this section?
I am applying for this section because it doesn't currently have a moderator just a supervisor, ChewBecca. I have made reports to this section and they haven't been handled and this may be due to the section not having a moderator and ChewBecca being busy with other jobs a supervisor has to do. There is many threads in the section which are not following the rules, for example there is many thread that don't contain thread tags relating to the console or system.(Rule 1: Each thread must have a tag [1] for the console that it is referring to.) Also there are thread that don't contain enough information about the game they are creating a discussion about. For example,http://forum.ragezone.com/f81/wildstar-opinions-998032/. I would like to become a moderator so I can clean up this section and get more activity in the section as at the moment it doesn't have much activity. I also love getting involved in discussion about different games and love finding out all about new games people can brought and what they think of them as it helps me chose what games I want to buy next.

Experience:
I haven't actually got any experience with moderating forums however I always like to learn and I have to start somewhere. As the section I am applying for doesn't have much activity it could be a great starting point for someone who doesn't have lots of moderating experience and can help me learn.

My Contribution
I think it is harder to contribute to an 'Evolution' section than MMO sections however I have tried my best to create open discussion threads and post replies to other threads where I can. I have contributed to many other sections like Habbo and TV/Film. I know that this isn't much of a contribution I am posting much more in this section and creating more threads and have posted in the past. Also, I always look over this section to find things to report to help keep it clean but not always the reports get handled. My contributions is probably the weakest point of my application and I know that but I am trying to improve on that.

My Activity:
I have became increasingly more active on the forums and have spent most of my free time on the forums. I can spend anywhere between 12hours - 3hours on the forums and I love being on the forums is lots of fun and keeps me entertained as I don't have much else to do.

Why I joined Ragezone and what I have done:
I joined Ragezone back in March 2012 (Been lurking around months before joining) and I joined because I wanted to contribute to the Habbo Section with my custom ideas and badges. They weren't the best but I had to start somewhere. I stayed solely to the Habbo section for quite a while and after the TV/Film section was added to the forums I made quite a bit of contribution to that section and I loved it very much (I did put a suggestion in for a TV/Film section 2 or so months before it was created so maybe that helped influence Vendaku~Metal to create another thread wanting a TV/Film section).

I was awarded the 'Biggest spammer 2012' award in the Ragezone Awards and most people would think this as a bad achievement however I liked it very much (Got Alpha rank in under a year). I then become quite in-active due to personal problems and busy with school work but I am back and back for good.

I came back to Ragezone with more of a mature attitude and better grammar, ( my grammar was poor before and I have cut out almost all slang).When I came back noticed that both section I loved had started to become in-active so I didn't have many places to post. So I started to diverse my posting areas and started to post in different areas including the 'Gaming Hotspot!'.

Other things I have done for the forums. Even though I haven't done as many post as I usually do, I have done many reports. I have over 140 reports in many different sections. My report count. (Didn't want to put the picture on the post as it would take up too much space so added link.)

I think being on Ragezone has made me more mature and helped me correct my bad grammar which when I look back at my older threads just looks terrible and have gone back and edited some of my threads because the grammar is so bad.

Infractions and warnings:
I currently have 0 points. In the past I have been given 3 warnings and 1 infraction, all expired. I have learnt from my warnings and have improved myself and my behaviour due to them.

Thanks for reading
Shoelace

recuiting gphx designers

$
0
0
Hey there im basically need a couple of Graphics designers for my hotel if your interested please comment below and share some fo your work you must have Paint.Net or any other program to make designs with and not use paint and well thats its really. ;/
Thanks

[Help] Need help with Plus Emulator

[Request] I Need, Ep8 GM Command / Monster ID ?

$
0
0
Cabal Online, EP8, boss list , ids vs bla bla ...

/_summon 1 1799 vsvs ?? help me ??

[Release] ShockRP v1 Release.

$
0
0
This emulator is based on BcStorm which was one of the first release of the 'R63b' ui, therefor it still has a lot of the characteristics as the everyday r63 roleplay. This is only good for a base, since it's not fully coded. Just releasing to give people who want an RP a chance.

Things this has coded;
-> Police bots (Fully working, however I don't work through gates in this version).
-> Timers (The base of timers is coded, these do not use private threads, they all run using the GameCycle).
-> Corps (The corp cache system etc is fully coded, I'm not too sure about commands in this version).
-> RolePlay Class (Contains all RP information, cached once again (Saves upon client disconnect))
-> Delivery bot
-> Apartments
-> Basic commands.
-> Vector2D pathfinder (Better for finding paths)
and some other things, not too sure, my current version is more updated so don't want to list features which it doesn't have.

This is ShockRP v1, please don't get confused with the other version of shock which Flare/Faze uses. That is Shock v0.5.

Downloading.
EMU:
http://www.mediafire.com/download/su...cStorm_(3).rar
DB:
http://www.mediafire.com/download/rz...axsue/test.rar

The swfs are any which work with BcStorm's release. You just need to use HabboUI to style the swf, I might release my swf at a later date. The 'Achievements' button is used in order to call a taxi to the home room as seen on FazeRP.

Reason for releasing:
I released it via Facebook so why not give it to you people.


This is a release not a help thread, I suggest developers using this as a base not new people.

[Help] CashShop Problems

$
0
0
Installed 2 Servers (EX700+ & S6ep3)

Already configured the both servers. Tested my configured CashShop and its working on the EX700+ but my S6ep3 when buying items nothing happens . . .

I am using 2 Database (MuOnline & MuOnline2) and 3DB format of MuEngine.


I don't know where to check such kind of problem because I don't see any errors on the GS. Hope someone can help where to look for this problem.

Website Building, perhaps any tips?

$
0
0
Well, i've made my V83 private server, using hamachi. Fixed somewhat all the bugs and made the NPC's with ragezones help and again, i'm asking for ragezones help.


I know how to work with Wamp Server etc but there's one problem, how to build actually a proper custom maplestory website that you see on other server's websites? Purely aimed for Maplestory.

I've been searching all around google, tried plenty of website builders but yet still it didn't work.

Perhaps anyone has some sweet tips for me to start off with the Maplestory site?

Bugs item sql + set your computer as a server

$
0
0
When I go into the game and try to buy a weapon, I get the message "item can not be bought" not with all the weapons, with some of them.
Someone who can help me please? <3 :))))






another thing I've created and configured everything in the game "local" to make my computer "server" how can I do?
Have static IP address? (I've already called the provider, soon will make the changes)

[R63b] HabZoid Hotel ~ Online Now! [R63b]

$
0
0


:dancing2:~HabZoid Hotel~:dancing2:


Why should you join HabZoid?

HabZoid is not exactly a new hotel, but it's just re-opened with a whole new community to explore with a staff team dedicated to helping the users on the hotel. We love our users and we love our community. At the moment, our user count is low, but we are doing our very best to make HabZoid the biggest hotel without sacrificing a quality experience. Our staff team is "down-to-earth", and we only hire the best. Speaking of hiring, once we have enough users we'll be hiring in the next few weeks.

What makes HabZoid unique to other hotels?

Having been around the block a few times, and having opened and closed numerous times, we have learned a bit about the quality user experience. Some hotels beg their users to buy VIP, donate, or to spend all this money. We have those options available, but we don't beg nor do we make users feel the need to have to do that in order to enjoy their time on the hotel. Some hotels make their users advertise on other hotels. We do not ask our users to advertise, only to invite their friends. This way we don't end up in a war with some other lame hotel who tries to boot our hotel offline constantly. HabZoid Staff and Management is completely dedicated to making the user experience enjoyable. Staff are volunteer employees in our eyes, not royalty with special powers. We do not treat users any worse or any better than our Staff or VIP. Everyone is treated equally at HabZoid Hotel.

Features List:
Spoiler:
- Free to Join
- No Hamachi Required
- Hiring Staff Very Soon!
- Open & Online 24/7
- Cheap VIP & Elite VIP
- Free HabZoid Club
- Custom Furniture
- Brand New Emulator & SWFs
- Groups Working
- Games Coming Soon!
- Events Staff Needed!


Screenshots:

Spoiler:



Hope to see you soon at HabZoid!

[Help] [PlusR2] Silverwave Client kick

Please help Fatal error: Call to undefined function mssql_

$
0
0
I always get this on appserv, i can use reglar Guzn registration page when i use like full site etc i get stuff like this

Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\secure\config.php on line 19


And here is my config whats wrong in here?
PHP Code:

<?php
session_start
();
require(
'class_sqlfunctions.php');
date_default_timezone_set('Europe/Finland');

/**********************************
| @author SuperWaffle.            |
| Fill in the correct info below. |
*********************************/
class connect
{
  var 
$host "MYPC-NAMEHERE/SQLEXPRESS";   // Host, usually PCNAME\SQLEXPRESS
  
var $user "sa";                      // Username is usually empty.
  
var $pass "blablabla";                     // Password is usually empty.
  
var $dbn  "GunzDB";              // Database name is most likely GunzDB.

  
public function __construct()
  {
    
$con mssql_connect($this->host$this->user$this->pass) or die("<center><font color='red'>Failed to connect to the database!</font></center>");
    
mssql_select_db($this->dbn$con) or die("<center><font color='red'>Failed to select the database!</font></center>");
  }
}
new 
connect();

/*** Location of your emblem folder.
     Example: http://gunz.com/emblem = emblem ***/
$emblemfolder "emblem";

/*** Define the account name(s) of the admin(s) here, seperate with ,"sa"
     Those will have access to the manage updates, manage events, item shop and IP Ban functions. ***/
$admins = array("Z1ls");

Any help would be appreciate it. thank you.

[Help] Want somethings from all awesome developers

$
0
0
1st. I'm poor i can't even host my private server but i edit it to my friends, so i request some things from all dears awesome developer and all Professionals Like my lovely RoyalBlade and Witchy Moo and Sure sladlejrhfpq and all awesome and all Legends..


  • Hero System
  • Monkey Maker System
  • Automatic Events System (LMS , Job Events) and etc...
  • Levels rewards system
  • Wanted system
  • Anti cheat systems
  • Unique System rewards silks



Special thanks for any one will help us ..Please
I think this systems all peoples need it ...
Thanks my RaGEZONE Dears
Sorry for my very bad English
In The End I hope no say for Sell cuz i'm very poor

[Help] Eclipse,Iris,Sacred and Ashcrow Titan Bug

$
0
0
Hi,
well,the next issue is about those sets in the titan files server.
the sets in game receive high def states - BUT
in the reality they give 0 defense
both of the facts are not good;
1.in the item(new).txt in the Defense Column no meter which input i give its not changes in game (numbers)
2.the and it's not changes the actual defense of the item (vs mobs)

any clue ? Oo

Help

Viewing all 25045 articles
Browse latest View live


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