NIMBUZZERGQ FORUM 2015-2017
HI GUEST WELCOME TO NIMBUZZGQ FORUM PLEASE REGISTER TO HAVE FULL ACCESS TO THE FORUM AND BE ABLE TO DOWNLOAD STUFF STAY WITH US THANK YOU



Forum Designer©️
NIMBUZZERGQ FORUM 2015-2017
HI GUEST WELCOME TO NIMBUZZGQ FORUM PLEASE REGISTER TO HAVE FULL ACCESS TO THE FORUM AND BE ABLE TO DOWNLOAD STUFF STAY WITH US THANK YOU



Forum Designer©️
NIMBUZZERGQ FORUM 2015-2017

HI GUEST WELCOME TO NIMBUZZGQ FORUM PLEASE REGISTER TO HAVE FULL ACCESS TO THE FORUM AND BE ABLE TO DOWNLOAD STUFF STAY WITH US THANK YOU


You are not connected. Please login or register

flood software create

View previous topic View next topic Go down  Message [Page 1 of 1]

1flood software create Empty flood software create Wed Oct 07, 2015 3:13 am

sugnan

sugnan
reviewer
reviewer
bro I want to create server bot like nuke gfg etc. and also flood software.. what should I want to use. and how to start!! tell me clearly bro thanks!!

2flood software create Empty Re: flood software create Wed Oct 07, 2015 9:26 am

Simple=brother

avatar
Developer
Developer
You can create them easly if u have source code. For example source code of kbz, kpv server vist. http://gfgbuzz.com

3flood software create Empty Re: flood software create Sun Oct 18, 2015 9:40 pm

sugnan

sugnan
reviewer
reviewer
ah I want source code bro like nuke kpv etc=
.

4flood software create Empty Re: flood software create Mon Oct 19, 2015 11:53 pm

Admin

Admin
Designer
Designer
I will try my best to get it

5flood software create Empty Re: flood software create Thu Oct 29, 2015 4:49 am

sara_amir

sara_amir
reviewer
reviewer
you people using in which soft for coding......how can creat own soft if I habe source code

6flood software create Empty Re: flood software create Fri Oct 30, 2015 9:58 am

top

avatar
Designer
Designer
sara_amir wrote:you people using in which soft for coding......how can creat own soft if I habe source code
u can debug any software easily by micro soft visual basic 2013

7flood software create Empty Re: flood software create Sun Nov 22, 2015 6:20 pm

vijay_jesu

vijay_jesu
reviewer
reviewer
Nice..

8flood software create Empty Re: flood software create Wed Jan 20, 2016 11:54 pm

sugnan

sugnan
reviewer
reviewer
see. here am posting source code of connecting to nimbuzz server :-

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using agsXMPP;
using agsXMPP.protocol.client;
using agsXMPP.Xml.Dom;
using agsXMPP.protocol.x.muc;
namespace server-bot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Control.CheckForIllegalCrossThreadCalls = false;
}
XmppClientConnection x = new XmppClientConnection();
private void button1_Click(object sender, EventArgs e)
{
x = new XmppClientConnection {Show = agsXMPP.protocol.client.ShowType.chat, Server = "nimbuzz.com", ConnectServer = "o.nimbuzz.com",Status="send help to know how to use" };
x.Open( id.Text, password.Text, resource.Text);
x.OnLogin += new ObjectHandler(x_OnLogin);
x.OnMessage += new MessageHandler(x_OnMessage);
x.OnAuthError += new XmppElementHandler(x_OnAuthError);
x.OnError +=new ErrorHandler(x_OnError);
x.OnPresence += new PresenceHandler(x_OnPresence);

}
public void x_OnPresence(object sender, Presence prs)
{
if (prs.Type == PresenceType.subscribe)
{
x.Send(new Presence { To = prs.From, Type = PresenceType.subscribe });
x.Send(new Presence { To = prs.From, Type = PresenceType.subscribed });
((XmppClientConnection)sender).Send(new agsXMPP.protocol.client.Message { To =prs.From, Body = "send help", Type = MessageType.chat });
}
}
public void x_OnLogin(object sender)
{
id.BackColor = Color.Green;
password.BackColor = Color.Green;
x.SendMyPresence();
}
public void x_OnError(object sender,Exception ex)
{
id.BackColor = Color.Yellow;
password.BackColor = Color.Yellow;
x.Open( id.Text, password.Text, resource.Text);
}

public void x_OnAuthError(object sender, Element el)
{
id.BackColor = Color.Red;
password.BackColor = Color.Red;
}

public void x_OnMessage(object sender, agsXMPP.protocol.client.Message msg)
{
try
{
if (msg.Body == null)
{
return;
}
else
{
msg.Body = msg.Body.ToLower().Trim();
}

if (msg.Body == "help")
{
((XmppClientConnection)sender).Send(new agsXMPP.protocol.client.Message { To = msg.From, Body = "send con#id#password#resource#room#roompassword ", Type = MessageType.chat });
}
if (msg.Body.StartsWith("con#"))
{
string[] arr = new string[]{};
arr = msg.Body.Split('#') ;

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum