Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 03:48

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

Advertisement



[RELEASE] Poultry, yet another GM tool! (Zoidberg reincarnated)

Discussion on [RELEASE] Poultry, yet another GM tool! (Zoidberg reincarnated) within the Rappelz Private Server forum part of the Rappelz category.

Closed Thread
 
Old 02/10/2015, 10:27   #31
 
elite*gold: 0
Join Date: Aug 2011
Posts: 532
Received Thanks: 233
Poultry 2.0.3.4
  • Code cleanup and optimizations
  • Interface & text fixes
  • Character query context menu fixed
  • Added a bigger map to teleport control
  • Added the world map NPC/character loader feature
  • Added the Horizen map NPC/character loader feature
  • Character list 'Detailed' context menu item fixed
  • Minor adjustments to database connection method (startup only)

Poultry 2.0.3.3
  • Context menu added to saved skills list
  • Code cleanup and optimizations
  • Interface fixes
  • MonsterResource editor feature added
  • Resource editors have epics after the label now, the labels show which epics I've tested and built them on. To have a missing epic supported, please contact me.
Attached Files
File Type: rar Poultry.[RELEASE_V2.0.3.4]-NO ICONS.rar (3.26 MB, 81 views)
marekrndr is offline  
Thanks
1 User
Old 11/15/2016, 20:19   #32
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1
Received Thanks: 0
RE-up the icons please!
calangaoo is offline  
Old 10/11/2017, 10:26   #33
 
elite*gold: 0
Join Date: Apr 2017
Posts: 109
Received Thanks: 9
Trying to connect to gameserver, but after starting connection, its going to eternity, but if i press "Cancel" the program is crit and exit.
Connection to DB - SUCCESS!
I try to put different ports on gameserver like 8841, 4502 etc ( and other, gain from Port Scanner) but take same result.
YuhaBah is offline  
Old 03/11/2018, 16:50   #34
 
elite*gold: 0
Join Date: Mar 2010
Posts: 160
Received Thanks: 24
Tries to connect auth.dbo.accounts but in the db it is listed as auth.dbo.account. refuses to connect because of this.
Azreil is offline  
Old 03/15/2018, 18:45   #35
 
elite*gold: 0
Join Date: Nov 2012
Posts: 8
Received Thanks: 6
Quote:
Originally Posted by Azreil View Post
Tries to connect auth.dbo.accounts but in the db it is listed as auth.dbo.account. refuses to connect because of this.
You can work around this by using a synonym:

Code:
create synonym Accounts for dbo.Account
vweegit is offline  
Thanks
1 User
Old 03/15/2018, 19:35   #36
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 923
Received Thanks: 235
Quote:
Originally Posted by vweegit View Post
You can work around this by using a synonym:

Code:
create synonym Accounts for dbo.Account
is this a sql query?
thefear511 is offline  
Old 03/15/2018, 23:21   #37
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,782
Received Thanks: 1,462
Yes and it does work.

For new queries written inside the SQL window with the synonym name it will say that it is an invalid object name and invalid column name but it still does execute the query written under the synonym anyway.
ThunderNikk is offline  
Old 03/16/2018, 10:47   #38
 
elite*gold: 0
Join Date: Nov 2012
Posts: 8
Received Thanks: 6
Quote:
Originally Posted by thefear511 View Post
is this a sql query?
Yes, it is, sorry. I should have made that clear.

Quote:
Originally Posted by ThunderNikk
For new queries written inside the SQL window with the synonym name it will say that it is an invalid object name and invalid column name but it still does execute the query written under the synonym anyway.
Interesting - SSMS does not give me those errors. It added 'Accounts' to the auto-complete context menu, even.
vweegit is offline  
Thanks
2 Users
Old 03/16/2018, 14:09   #39
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,782
Received Thanks: 1,462
Quote:
Originally Posted by vweegit View Post
Interesting - SSMS does not give me those errors. It added 'Accounts' to the auto-complete context menu, even.
I just ran the query and then I wrote and added a query all without restarting server manager.

I will try it again tonight because it will have been closed and reopened and see if I get the same issues.
ThunderNikk is offline  
Old 03/16/2018, 15:56   #40
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 923
Received Thanks: 235
Quote:
Originally Posted by vweegit View Post
Yes, it is, sorry. I should have made that clear.



Interesting - SSMS does not give me those errors. It added 'Accounts' to the auto-complete context menu, even.
wow! this makes so many stuff work xd many tools i had were compiled using the table name Account while other version of the game people like had the tablen mae Accounts making old tools not working xd thanks tho.
thefear511 is offline  
Old 03/17/2018, 00:55   #41
 
elite*gold: 0
Join Date: Nov 2012
Posts: 8
Received Thanks: 6
Quote:
Originally Posted by thefear511 View Post
wow! this makes so many stuff work xd many tools i had were compiled using the table name Account while other version of the game people like had the tablen mae Accounts making old tools not working xd thanks tho.
No problem. I'm surprised it hasn't been shared before: SQL server has allowed synonyms since SQL 2005. I've used it practically since my first day with PServer software when - it was either Poultry or Glandu's auth tool, I forget which - threw an error for that particular table.

Quote:
Originally Posted by ThunderNikk View Post
I just ran the query and then I wrote and added a query all without restarting server manager.

I will try it again tonight because it will have been closed and reopened and see if I get the same issues.
Hmm. Shouldn't require a restart, the synonym should immediately affect the project. I suppose there could be some goofy version dependency, but I can't recall ever seeing this issue with any version of SQL server, though I'm sure I probably missed a version or two somewhere along the years.
vweegit is offline  
Thanks
1 User
Old 03/17/2018, 02:29   #42
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,782
Received Thanks: 1,462
Figured it out...

In the top left window where it has a selection of available databases if auth is selected or you start the query with...

Use auth

then it works fine but if you try to direct to the auth database in the query it does not recognize the synonym in the written query or give you context menus but it executes it fine.

example

select * from auth.dbo.accounts where account like '%name%'

only works if auth is selected in the available databases drop down

but

Use auth

select * from dbo.accounts

works with context and no errors on invalid dbo
ThunderNikk is offline  
Old 03/17/2018, 02:38   #43
 
elite*gold: 0
Join Date: Nov 2012
Posts: 8
Received Thanks: 6
Quote:
Originally Posted by ThunderNikk View Post
Figured it out...

In the top left window where it has a selection of available databases if auth is selected or you start the query with...

Use auth

then it works fine but if you try to direct to the auth database in the query it does not recognize the synonym in the written query or give you context menus but it executes it fine.

example

select * from auth.dbo.accounts where account like '%name%'

only works if auth is selected in the available databases drop down

but

Use auth

select * from dbo.accounts

works with context and no errors on invalid dbo
Glad you got it. I was going to have you query the auth DB sys.synonyms to make sure the synonym was applied there. SSMS defaults to applying the query against whichever DB you have selected, which tends to make me lazy.

You are correct:

Code:
use auth
create synonym Accounts for auth.dbo.Account
or

Code:
use auth
create synonym Account for auth.dbo.Accounts
Would be the proper syntax, depending on your circumstance.

Another handy snippet, you can check against a DB to see what synonyms you have created.

Code:
use auth
select * from sys.synonyms
This will show you varied information on the synonyms you have created.
vweegit is offline  
Thanks
2 Users
Old 06/10/2023, 04:58   #44
 
tanos77's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 109
Received Thanks: 10
where can download icons. Link its down
tanos77 is offline  
Old 06/10/2023, 11:28   #45
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,782
Received Thanks: 1,462
Please check the dates on threads before posting.

This tool is no longer supported
ThunderNikk is offline  
Thanks
1 User
Closed Thread

Tags
gm, rappelz, telnet, tool, zoidberg


Similar Threads Similar Threads
[ GM TOOL ] Zoidberg - Edacious [ PREVIOUS ZOIDBERG REINCARNATED ]
10/11/2014 - Rappelz Private Server - 29 Replies
This is a preview of 2.0.2.0 http://i.epvpimg.com/f3RTe.jpg http://i.epvpimg.com/FnC2h.jpg Zoidberg - Edacious v1.2.0.0 What's new in 1.2.1.0 : Custom commands feature
Help to ZoidBerg Tool
11/15/2012 - Rappelz Private Server - 2 Replies
Hi friends, i have a server for me playing alone, 7.4 files and 7.4 client, i downloaded Zoidberg tool, but i donk know he work.... ( i am noob hahhaha) i dont find button to send commands to capitainherlockserver and in log error appers: Error : 5 @ Requested Clipboard operation did not succeed. anyone can help me? ( have problem with antivirus?)
Help to ZoidBerg Tool
11/13/2012 - Rappelz - 0 Replies
Hi friends, i have a server for me playing alone, 7.4 files and 7.4 client, i downloaded Zoidberg tool, but i donk know he work.... ( i am noob hahhaha) i dont find button to send commands to capitainherlockserver and in log error appers: Error : 5 @ Requested Clipboard operation did not succeed. anyone can help me? ( have problem with antivirus?)
[Public release] Zoidberg, the new GM tool
10/27/2012 - Rappelz Private Server - 51 Replies
http://www.elitepvpers.com/forum/rappelz-private-s erver/2200547-gm-tool-zoidberg-edacious-previous-z oidberg-reincarnated.html



All times are GMT +2. The time now is 03:48.


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.