View Single Post
  #1  
Old 06-16-2009, 09:48 AM
Cubes Cubes is offline
Registered User
Cubes's Avatar
Join Date: Dec 2005
Location: Chesapeake, Virginia
Posts: 498
Cubes is a jewel in the roughCubes is a jewel in the rough
Sending multiple trigger actions

Is it possible to send multiple trigger actions to the same thing? This is just an example of what i'm mean by sending from client->serverside. It is only doing the first one I try to send.

PHP Code:
function onKeyPressed(keycodecharscancode) {
  if(
keycode == 192) {
    
triggerserver("gui""-loltest""flip"1);     
    
triggerserver("gui""-loltest""flip"2);    
    
triggerserver("gui""-loltest""flip"3);    
  }

Reply With Quote