This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

Module: Orpheu (v2.6.3)


Post New Thread Reply   
 
Thread Tools Display Modes
sami_spt
Veteran Member
Join Date: Sep 2012
Location: I<3 pussy cats
Old 04-12-2013 , 09:18   Re: Module: Orpheu (v2.4)
Reply With Quote #1051

i want to test zombie escape with the new update.
this is what i get!


PHP Code:
L 04/12/2013 17:15:45HudSyncObject -1 is invalid
L 04
/12/2013 17:15:45: [AMXXRun time error 10 (plugin "zombie_escape.amxx") (native "ShowSyncHudMsg") - debug not enabled!
L 04/12/2013 17:15:45: [AMXXTo enable debug modeadd "debug" after the plugin name in plugins.ini (without quotes).
L 04/12/2013 17:15:45HudSyncObject -1 is invalid
L 04
/12/2013 17:15:45: [AMXXRun time error 10 (plugin "zombie_escape.amxx") (native "ShowSyncHudMsg") - debug not enabled!
L 04/12/2013 17:15:45: [AMXXTo enable debug modeadd "debug" after the plugin name in plugins.ini (without quotes).

L 04/12/2013 17:15:50Expected 0 parametersgot 1
L 04
/12/2013 17:15:50: [AMXXRun time error 10 (plugin "zombie_escape.amxx") (native "ExecuteForward") - debug not enabled!
L 04/12/2013 17:15:50: [AMXXTo enable debug modeadd "debug" after the plugin name in plugins.ini (without quotes). 

I added debug after the plugin's name in plugins.ini


I provided the plugin's source also.

please have a look at my problem.

tnx.
Attached Files
File Type: sma Get Plugin or Get Source (zombie_escape.sma - 532 views - 66.7 KB)

Last edited by sami_spt; 04-12-2013 at 09:19.
sami_spt is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-12-2013 , 09:46   Re: Module: Orpheu (v2.4)
Reply With Quote #1052

The errors are unrelated to Orpheu, not sure why you post there. First is bout sync huds and second about Hamsandwich.

But, if you are under linux and it was working before, you may try this binary : https://forums.alliedmods.net/showpo...&postcount=271
__________________
Arkshine is offline
sami_spt
Veteran Member
Join Date: Sep 2012
Location: I<3 pussy cats
Old 04-12-2013 , 09:47   Re: Module: Orpheu (v2.4)
Reply With Quote #1053

hmm. ok.


PS: sorry: i thought it was an error related to orpheu!
sami_spt is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-13-2013 , 20:34   Re: Module: Orpheu (v2.4)
Reply With Quote #1054

Small update : v2.5

Changes :

- Fixed crash on player/bot connection when using OrpheuMemory[Set|Replace] natives
- Updated Dod/TFC pev/vtable offsets in config files

Notes :

- Compiled with latest Boost 0.5.3 version / GCC 4.4
- Source code is now on gitbub : https://github.com/Arkshine/Orpheu
- Tested fastly and it seems ok.

Download in the first post.
__________________
Arkshine is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-14-2013 , 10:45   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1055

Small update for linux : 2.5.1.

Changes :

- (linux) Changed method to retrieve a library length. In some case, value was wrong.


For windows users, no need to update.
__________________
Arkshine is offline
yokomo
Surprise Ascot!
Join Date: May 2010
Location: Malaysia
Old 04-18-2013 , 13:56   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1056

Someone please update the signature:
Code:
[ORPHEU] Function "CHalfLifeMultiplay::CheckMapConditions"
This signature no longer working on hlds 5956 Windows. Thanks.
__________________
Team-MMG CS1.6 Servers:
✅ MultiMod -- 103.179.44.152:27016
✅ Zombie Plague -- 103.179.44.152:27015
✅ Zombie Escape -- 103.179.44.152:27017
✅ Klassik Kombat -- 103.179.44.152:27018
✅ Boss-Battle -- 103.179.44.152:27019
yokomo is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-18-2013 , 14:44   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1057

You don't need signature, it's a virtual function.
__________________
Arkshine is offline
TeddiBer
Senior Member
Join Date: Oct 2011
Old 04-26-2013 , 10:53   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1058

Hey, I using linux.
I updated the orpheu to the latest version 2.5.1.
And now this plugin not working, pleas can you make it work ?

PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <orpheu_memory>

#define PLUGIN "Slot Changer"
#define VERSION "1.0"
#define AUTHOR "Bence98007"

new dir[256]
new 
slot_pcvar

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
}

public 
plugin_precache()
{
    
slot_pcvar register_cvar("amx_slotnumber""24")
    
get_configsdir(dir255);
    
format(dir255"%s/orpheu/memory/SLOTCHANGER"dir);
    
file_write();
    
    if(
is_module_loaded("orpheu"))
    {
        new 
slot get_pcvar_num(slot_pcvar)
        
OrpheuMemoryReplace("SLOTCHANGER",0,"-maxplayers""%d"random_num(1000000000090000000000))
        
server_cmd("maxplayers %d"slot)
        
log_amx("[SLOT CHANGER] Orpheu module loaded.")
        
log_amx("[SLOT CHANGER] Max slots has been changed to %d"slot)
    }
    else
    {
        
log_amx("[SLOT CHANGER] You need Orpheu, to use Slot Changer!")
    }
}

public 
file_write()
{
    if(!
file_exists(dir))
    {
        
write_file(dir"{")
        
write_file(dir"   ^"name^"        : ^"SLOTCHANGER^",")
        
write_file(dir"   ^"library^"     : ^"engine^",")
        
write_file(dir"   ^"type^"       : ^"string^",")
        
write_file(dir"   ^"memoryType^"  : ^"data^"")
        
write_file(dir"}")
        
log_amx("[SLOT CHANGER] File write complete.")
    }

TeddiBer is offline
kiki33hun
Veteran Member
Join Date: Jul 2011
Location: Magyarország
Old 04-26-2013 , 11:16   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1059

Quote:
Originally Posted by TeddiBer View Post
Hey, I using linux.
I updated the orpheu to the latest version 2.5.1.
And now this plugin not working, pleas can you make it work ?

PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <orpheu_memory>

#define PLUGIN "Slot Changer"
#define VERSION "1.0"
#define AUTHOR "Bence98007"

new dir[256]
new 
slot_pcvar

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
}

public 
plugin_precache()
{
    
slot_pcvar register_cvar("amx_slotnumber""24")
    
get_configsdir(dir255);
    
format(dir255"%s/orpheu/memory/SLOTCHANGER"dir);
    
file_write();
    
    if(
is_module_loaded("orpheu"))
    {
        new 
slot get_pcvar_num(slot_pcvar)
        
OrpheuMemoryReplace("SLOTCHANGER",0,"-maxplayers""%d"random_num(1000000000090000000000))
        
server_cmd("maxplayers %d"slot)
        
log_amx("[SLOT CHANGER] Orpheu module loaded.")
        
log_amx("[SLOT CHANGER] Max slots has been changed to %d"slot)
    }
    else
    {
        
log_amx("[SLOT CHANGER] You need Orpheu, to use Slot Changer!")
    }
}

public 
file_write()
{
    if(!
file_exists(dir))
    {
        
write_file(dir"{")
        
write_file(dir"   ^"name^"        : ^"SLOTCHANGER^",")
        
write_file(dir"   ^"library^"     : ^"engine^",")
        
write_file(dir"   ^"type^"       : ^"string^",")
        
write_file(dir"   ^"memoryType^"  : ^"data^"")
        
write_file(dir"}")
        
log_amx("[SLOT CHANGER] File write complete.")
    }


Work on orpheu 2.3, and change
#define AUTHOR "Bence98007"

to

#define AUTHOR "kiki33"

Plugin default link: http://www.hlmod.hu/viewtopic.php?f=19&t=5782 , and I did not give permission to change author. Thanks
__________________
kiki33hun is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-26-2013 , 11:20   Re: Module: Orpheu (v2.5.1)
Reply With Quote #1060

It's kind of lame to use something to hurt game hoster's business. Not welcomed here and you are advised to not insist.
__________________

Last edited by Arkshine; 04-26-2013 at 11:20.
Arkshine is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode