Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 14:59

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



need help for create new map :(

Discussion on need help for create new map :( within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2015
Posts: 8
Received Thanks: 0
Unhappy need help for create new map :(

hi all please i need help
i had create new map i create (NFM & FNC) and all the photos for map
but NFA i can't create one i search so much all program i found not good to greate new one
i find Programming for NFA By dream
this the programmig if anyone can create this program please help me and do this ^^
Drawing by clicking
Code:
private void checkBox3_CheckedChanged(object sender, EventArgs e)
        {
            if (checkBox3.Checked == true)
            {
                if (this.dataGridView4.Rows[0].Cells[0].Value == null)
                {
                    num_nfa = 1;
                }
                else
                {
                    num_nfa = Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value) + 1;
                }
            }
            if (checkBox3.Checked == false)
            {

                for (int i = 0; i < dataGridView4.RowCount - 1; i++)
                {
                    if (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[0].Value) == num_nfa)
                    {
                        this.dataGridView4.Rows[i].Cells[3].Value = count_nfa;
                    }
                }
                count_nfa = 0;

            }
        }


private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
        {
            if (checkBox3.Checked == true)
            {
                x1 = e.X;
                y1 = e.Y;
                dataGridView4.Rows.Add();
                this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value = num_nfa;
                this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[1].Value = x1;
                this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[2].Value = 3072 - y1;
                count_nfa += 1;
            }
        }


private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
        {
            if (checkBox3.Checked == true)
            {
                if (count_nfa > 1)
                {
                    pictureBox1.Refresh();
                }
            }
        }

private void pictureBox1_Paint(object sender, PaintEventArgs e)
        {
            if (onnfa == 1)
            {
                //nfa
                int num = 0;
                int xnfa = Convert.ToInt32(this.dataGridView4.Rows[0].Cells[1].Value.ToString());
                int ynfa = Convert.ToInt32(this.dataGridView4.Rows[0].Cells[2].Value.ToString());
                for (int i = 0; i < (dataGridView4.RowCount - 2); i++)
                {
                    num = Convert.ToInt32(this.dataGridView4.Rows[i].Cells[0].Value.ToString());
                    if (num == (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[0].Value.ToString())))
                    {
                        Graphics g = e.Graphics;
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[2].Value.ToString())), (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[2].Value.ToString())));
                    }
                    else
                    {
                        Graphics g = e.Graphics;
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[2].Value.ToString())), xnfa, 3072 - ynfa);
                        g.DrawString(Convert.ToString(this.dataGridView4.Rows[i].Cells[0].Value.ToString()), new Font("Helvetica", 7), Brushes.Red, xnfa, 3072 - ynfa);
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i+1].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i+1].Cells[2].Value.ToString())), (Convert.ToInt32(this.dataGridView4.Rows[i + 2].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i + 2].Cells[2].Value.ToString())));
                        xnfa = Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[1].Value.ToString());
                        ynfa = Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[2].Value.ToString());
                    }
                }
                Graphics p = e.Graphics;
                p.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[2].Value.ToString())), xnfa, 3072 - ynfa);
                p.DrawString(Convert.ToString(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value.ToString()), new Font("Helvetica", 7), Brushes.Red, xnfa, 3072 - ynfa);
                        
                //nfa
            }
        }
Drawing on the movement of the mouse
Code:
private void checkBox8_CheckedChanged(object sender, EventArgs e)
        {
            if (checkBox8.Checked == true)
            {
                if (this.dataGridView4.Rows[0].Cells[0].Value == null)
                {
                    num_nfa = 1;
                }
                else
                {
                    num_nfa = Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value) + 1;
                }
            }
            if (checkBox8.Checked == false)
            {

                for (int i = 0; i < dataGridView4.RowCount - 1; i++)
                {
                    if (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[0].Value) == num_nfa)
                    {
                        this.dataGridView4.Rows[i].Cells[3].Value = count_nfa;
                    }
                }
                count_nfa = 0;

            }
        }


private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
        {
if (checkBox8.Checked == true)
            {
                doDraw = true;
            }
        }

private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
        {
            if (checkBox8.Checked == true)
            {
                doDraw = false;
            }
        }

private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
        {
          if (checkBox8.Checked == true)
            {
                if (doDraw)
                {
                    x1 = e.X;
                    y1 = e.Y;
                    dataGridView4.Rows.Add();
                    this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value = num_nfa;
                    this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[1].Value = x1;
                    this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[2].Value = 3072 - y1;
                    count_nfa += 1;
                    if (count_nfa > 1)
                    {
                        pictureBox1.Refresh();
                    }
                }
            }
        }


private void pictureBox1_Paint(object sender, PaintEventArgs e)
        {
            if (onnfa == 1)
            {
                //nfa
                int num = 0;
                int xnfa = Convert.ToInt32(this.dataGridView4.Rows[0].Cells[1].Value.ToString());
                int ynfa = Convert.ToInt32(this.dataGridView4.Rows[0].Cells[2].Value.ToString());
                for (int i = 0; i < (dataGridView4.RowCount - 2); i++)
                {
                    num = Convert.ToInt32(this.dataGridView4.Rows[i].Cells[0].Value.ToString());
                    if (num == (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[0].Value.ToString())))
                    {
                        Graphics g = e.Graphics;
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[2].Value.ToString())), (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[2].Value.ToString())));
                    }
                    else
                    {
                        Graphics g = e.Graphics;
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i].Cells[2].Value.ToString())), xnfa, 3072 - ynfa);
                        g.DrawString(Convert.ToString(this.dataGridView4.Rows[i].Cells[0].Value.ToString()), new Font("Helvetica", 7), Brushes.Red, xnfa, 3072 - ynfa);
                        g.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[i+1].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i+1].Cells[2].Value.ToString())), (Convert.ToInt32(this.dataGridView4.Rows[i + 2].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[i + 2].Cells[2].Value.ToString())));
                        xnfa = Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[1].Value.ToString());
                        ynfa = Convert.ToInt32(this.dataGridView4.Rows[i + 1].Cells[2].Value.ToString());
                    }
                }
                Graphics p = e.Graphics;
                p.DrawLine(System.Drawing.Pens.Red, (Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[1].Value.ToString())), 3072 - (Convert.ToInt32(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[2].Value.ToString())), xnfa, 3072 - ynfa);
                p.DrawString(Convert.ToString(this.dataGridView4.Rows[dataGridView4.RowCount - 2].Cells[0].Value.ToString()), new Font("Helvetica", 7), Brushes.Red, xnfa, 3072 - ynfa);
                        
                //nfa
            }
        }
and it's photo for program

thanks and Sorry for bad English
fadydody is offline  
Old 04/25/2016, 21:04   #2
 
elite*gold: 0
Join Date: Jun 2010
Posts: 47
Received Thanks: 4
in Be4 Thndr





=D
rubink06 is offline  
Reply


Similar Threads Similar Threads
[HELP] How create some weapons in ShStudio? / Crash item mall / can't create new mobs
06/24/2021 - Shaiya PServer Development - 3 Replies
Hey, Before say "use the search button" or "see other topic for resolve ur problem" i have search and i don't have found any fix for my problem :/ I have 4 big problem: -1: When i buy an item in my item mall IG the game crash (please try to recconect to the server ERROR 0) i don't have found help after 2 days of search -2: When i want create a boss/mobs IG (only boss and mobs who i have add in my Monster.SData) i have this error in the tchat "Not authorized to create!" why i have this...
[VB.NET] How to create a bot
03/07/2016 - .NET Languages - 7 Replies
Hi guys, I'm italian, so sorry for my bad english but I had to write here because in italian forum there isn't one answer for my question... So I want to create a bot for a online game but I did not understand 1 thing. There are 2 things for to create a bot: 1)Get phase: typical radar made reading the memory address. 2) Set phase: move or attack with my PG but how it's possibile? If i want move my PG in position x1 y1 to position x2 y2 i can't write in memory address the new position...
How create a trainer in cheat engine, and how to create autoassemble scripts [16 June
06/17/2012 - Facebook - 3 Replies
Many people asked me that... Maybe some of these people are from here.. or maybe not.. Anyway.. heres 25 minutes video ;D which should help? How create a trainer in cheat engine, and how to create autoassemble scripts - YouTube And yea.. I noticed that there 360p and 720p only.. no idea where the 460p gone... :x put 720p and full screen, otherwise in normal size its looks crappy
is possible to create a hack to create items +7
07/14/2008 - Dekaron - 25 Replies
How can I create a hack to create items +7



All times are GMT +2. The time now is 14:59.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.